(self, connection)
| 698 | @testing.fails_if(testing.requires.sequences) |
| 699 | @testing.requires.emulated_lastrowid |
| 700 | def test_implicit_pk_inline(self, connection): |
| 701 | t = self._fixture() |
| 702 | self._test( |
| 703 | connection, |
| 704 | t.insert().inline().values(data="data", x=5), |
| 705 | (testing.db.dialect.default_sequence_base, "data", 5), |
| 706 | inserted_primary_key=(), |
| 707 | ) |
| 708 | |
| 709 | @testing.requires.database_discards_null_for_autoincrement |
| 710 | def test_explicit_null_pk_values_db_ignores_it(self, connection): |