(self)
| 3922 | assert t.c.x in mapping |
| 3923 | |
| 3924 | def test_select_table_alias_column(self): |
| 3925 | t = self._fixture() |
| 3926 | x = t.c.x |
| 3927 | |
| 3928 | ta = t.alias() |
| 3929 | s = select(ta.c.x, ta.c.y) |
| 3930 | mapping = self._mapping(s) |
| 3931 | assert x not in mapping |
| 3932 | |
| 3933 | def test_select_label_alt_name_table_alias_column(self): |
| 3934 | t = self._fixture() |