(self)
| 235 | generator) |
| 236 | |
| 237 | def test_fractional_TIMESTAMP(self): |
| 238 | ticks = time() |
| 239 | def generator(row,col): |
| 240 | return self.db_module.TimestampFromTicks(ticks+row*86400-col*1313+row*0.7*col/3.0) |
| 241 | self.check_data_integrity( |
| 242 | ('col1 TIMESTAMP',), |
| 243 | generator) |
| 244 | |
| 245 | def test_LONG(self): |
| 246 | def generator(row,col): |
nothing calls this directly
no test coverage detected