(self, connection)
| 664 | ) |
| 665 | |
| 666 | def test_empty_insert_pk4(self, connection): |
| 667 | self._test_empty_insert( |
| 668 | connection, |
| 669 | Table( |
| 670 | "d", |
| 671 | MetaData(), |
| 672 | Column("x", Integer, primary_key=True), |
| 673 | Column("y", Integer, DefaultClause("123")), |
| 674 | ), |
| 675 | ) |
| 676 | |
| 677 | def test_empty_insert_nopk1(self, connection): |
| 678 | self._test_empty_insert( |
nothing calls this directly
no test coverage detected