()
| 1754 | @testing.requires.identity_columns_standard |
| 1755 | def test_insert_always_error(self, connection): |
| 1756 | def fn(): |
| 1757 | connection.execute( |
| 1758 | self.tables.tbl_a.insert(), |
| 1759 | [{"id": 200, "desc": "a"}], |
| 1760 | ) |
| 1761 | |
| 1762 | assert_raises((DatabaseError, ProgrammingError), fn) |
| 1763 |