(self, connection)
| 647 | ) |
| 648 | |
| 649 | def test_direct_params(self, connection): |
| 650 | t = self._fixture() |
| 651 | self._test( |
| 652 | connection, |
| 653 | t.insert().values(id=1, data="data", x=5), |
| 654 | (1, "data", 5), |
| 655 | inserted_primary_key=(), |
| 656 | ) |
| 657 | |
| 658 | @testing.requires.insert_returning |
| 659 | def test_direct_params_returning(self, connection): |