(self)
| 227 | generator) |
| 228 | |
| 229 | def test_TIMESTAMP(self): |
| 230 | ticks = time() |
| 231 | def generator(row,col): |
| 232 | return self.db_module.TimestampFromTicks(ticks+row*86400-col*1313) |
| 233 | self.check_data_integrity( |
| 234 | ('col1 TIMESTAMP',), |
| 235 | generator) |
| 236 | |
| 237 | def test_fractional_TIMESTAMP(self): |
| 238 | ticks = time() |
nothing calls this directly
no test coverage detected