(self, connection)
| 573 | table.drop(connection) |
| 574 | |
| 575 | def test_empty_insert_pk1(self, connection): |
| 576 | self._test_empty_insert( |
| 577 | connection, |
| 578 | Table( |
| 579 | "a", |
| 580 | MetaData(), |
| 581 | Column("id", Integer, primary_key=True), |
| 582 | ), |
| 583 | ) |
| 584 | |
| 585 | def test_empty_insert_pk2(self, connection): |
| 586 | # now warns due to [ticket:3216] |
nothing calls this directly
no test coverage detected