()
| 1760 | @testing.requires.identity_columns_standard |
| 1761 | def test_insert_always_error(self, connection): |
| 1762 | def fn(): |
| 1763 | connection.execute( |
| 1764 | self.tables.tbl_a.insert(), |
| 1765 | [{"id": 200, "desc": "a"}], |
| 1766 | ) |
| 1767 | |
| 1768 | assert_raises((DatabaseError, ProgrammingError), fn) |
| 1769 |