(self, t1)
| 8278 | ) |
| 8279 | |
| 8280 | def test_insert_omitted(self, t1): |
| 8281 | self.assert_compile( |
| 8282 | insert(t1), "INSERT INTO t1 (id, a, c, e) VALUES (:id, :a, :c, :e)" |
| 8283 | ) |
| 8284 | |
| 8285 | def test_insert_from_select_omitted(self, t1): |
| 8286 | self.assert_compile( |
nothing calls this directly
no test coverage detected