(self)
| 274 | self.check_data_integrity(("col1 TIMESTAMP",), generator) |
| 275 | |
| 276 | def test_LONG(self): |
| 277 | def generator(row, col): |
| 278 | if col == 0: |
| 279 | return row |
| 280 | else: |
| 281 | return self.BLOBUText # 'BLOB Text ' * 1024 |
| 282 | |
| 283 | self.check_data_integrity(("col1 INT", "col2 LONG"), generator) |
| 284 | |
| 285 | def test_TEXT(self): |
| 286 | def generator(row, col): |
nothing calls this directly
no test coverage detected