(self, connection)
| 575 | ) |
| 576 | |
| 577 | def test_uppercase(self, connection): |
| 578 | t = self.tables.foo |
| 579 | self._test( |
| 580 | connection, |
| 581 | t.insert().values(id=1, data="data", x=5), |
| 582 | (1, "data", 5), |
| 583 | inserted_primary_key=(1,), |
| 584 | ) |
| 585 | |
| 586 | def test_uppercase_inline(self, connection): |
| 587 | t = self.tables.foo |