(self, connection)
| 646 | ) |
| 647 | |
| 648 | def test_empty_insert_pk3_fv(self, connection): |
| 649 | assert_raises( |
| 650 | exc.DBAPIError, |
| 651 | self._test_empty_insert, |
| 652 | connection, |
| 653 | Table( |
| 654 | "c", |
| 655 | MetaData(), |
| 656 | Column( |
| 657 | "x", |
| 658 | Integer, |
| 659 | primary_key=True, |
| 660 | server_default=FetchedValue(), |
| 661 | ), |
| 662 | Column("y", Integer, DefaultClause("123"), primary_key=True), |
| 663 | ), |
| 664 | ) |
| 665 | |
| 666 | def test_empty_insert_pk4(self, connection): |
| 667 | self._test_empty_insert( |
nothing calls this directly
no test coverage detected