(self)
| 270 | generator) |
| 271 | |
| 272 | def test_BLOB(self): |
| 273 | def generator(row,col): |
| 274 | if col == 0: |
| 275 | return row |
| 276 | else: |
| 277 | return self.BLOBBinary # 'BLOB\000Binary ' * 1024 |
| 278 | self.check_data_integrity( |
| 279 | ('col1 INT','col2 BLOB'), |
| 280 | generator) |
| 281 |
nothing calls this directly
no test coverage detected