(self)
| 3916 | assert t.c.x not in mapping |
| 3917 | |
| 3918 | def test_select_alias_column(self): |
| 3919 | t = self._fixture() |
| 3920 | x, y = t.c.x, t.c.y |
| 3921 | s = select(x, y).alias() |
| 3922 | mapping = self._mapping(s) |
| 3923 | |
| 3924 | assert t.c.x in mapping |
| 3925 | |
| 3926 | def test_select_alias_column_apply_labels(self): |
| 3927 | t = self._fixture() |