(self)
| 3903 | assert t.c.x not in mapping |
| 3904 | |
| 3905 | def test_select_alias_column(self): |
| 3906 | t = self._fixture() |
| 3907 | x, y = t.c.x, t.c.y |
| 3908 | s = select(x, y).alias() |
| 3909 | mapping = self._mapping(s) |
| 3910 | |
| 3911 | assert t.c.x in mapping |
| 3912 | |
| 3913 | def test_select_alias_column_apply_labels(self): |
| 3914 | t = self._fixture() |