(self)
| 644 | } |
| 645 | |
| 646 | def test_select_label_alt_name(self): |
| 647 | t = self._xy_table_fixture() |
| 648 | l1, l2 = t.c.x.label("a"), t.c.y.label("b") |
| 649 | s = text("select x AS a, y AS b FROM t").columns(l1, l2) |
| 650 | mapping = self._mapping(s) |
| 651 | assert l1 in mapping |
| 652 | |
| 653 | assert t.c.x not in mapping |
| 654 | |
| 655 | def test_select_alias_label_alt_name(self): |
| 656 | t = self._xy_table_fixture() |
nothing calls this directly
no test coverage detected