(self)
| 669 | assert t.c.x in mapping |
| 670 | |
| 671 | def test_select_alias_column(self): |
| 672 | t = self._xy_table_fixture() |
| 673 | x, y = t.c.x, t.c.y |
| 674 | s = text("select x, y FROM t").columns(x, y).alias() |
| 675 | mapping = self._mapping(s) |
| 676 | assert t.c.x in mapping |
| 677 | |
| 678 | def test_select_table_alias_column(self): |
| 679 | t = self._xy_table_fixture() |
nothing calls this directly
no test coverage detected