(self)
| 260 | generator) |
| 261 | |
| 262 | def test_LONG_BYTE(self): |
| 263 | def generator(row,col): |
| 264 | if col == 0: |
| 265 | return row |
| 266 | else: |
| 267 | return self.BLOBBinary # 'BLOB\000Binary ' * 1024 |
| 268 | self.check_data_integrity( |
| 269 | ('col1 INT','col2 LONG BYTE'), |
| 270 | generator) |
| 271 | |
| 272 | def test_BLOB(self): |
| 273 | def generator(row,col): |
nothing calls this directly
no test coverage detected