(self)
| 662 | assert t.c.x not in mapping |
| 663 | |
| 664 | def test_select_column(self): |
| 665 | t = self._xy_table_fixture() |
| 666 | x, y = t.c.x, t.c.y |
| 667 | s = text("select x, y FROM t").columns(x, y) |
| 668 | mapping = self._mapping(s) |
| 669 | assert t.c.x in mapping |
| 670 | |
| 671 | def test_select_alias_column(self): |
| 672 | t = self._xy_table_fixture() |
nothing calls this directly
no test coverage detected