(self, **kw: Any)
| 3052 | return NamedFromGrouping(self.element.alias(name=name, flat=flat)) |
| 3053 | |
| 3054 | def _anonymous_fromclause(self, **kw: Any) -> FromGrouping: |
| 3055 | return FromGrouping(self.element._anonymous_fromclause(**kw)) |
| 3056 | |
| 3057 | @util.ro_non_memoized_property |
| 3058 | def _hide_froms(self) -> Iterable[FromClause]: |
nothing calls this directly
no test coverage detected