(cls, exprs)
| 2056 | |
| 2057 | @classmethod |
| 2058 | def _gen_col_aliases(cls, exprs): |
| 2059 | yield from (expr.alias for expr in cls._gen_cols(exprs)) |
| 2060 | |
| 2061 | def resolve_ref(self, name, allow_joins=True, reuse=None, summarize=False): |
| 2062 | annotation = self.annotations.get(name) |