(self)
| 676 | assert t.c.x in mapping |
| 677 | |
| 678 | def test_select_table_alias_column(self): |
| 679 | t = self._xy_table_fixture() |
| 680 | x = t.c.x |
| 681 | |
| 682 | ta = t.alias() |
| 683 | s = text("select ta.x, ta.y FROM t AS ta").columns(ta.c.x, ta.c.y) |
| 684 | mapping = self._mapping(s) |
| 685 | assert x not in mapping |
| 686 | |
| 687 | def test_subquery_accessors(self): |
| 688 | t = self._xy_table_fixture() |
nothing calls this directly
no test coverage detected