(
self, name: Optional[str] = None, flat: bool = False
)
| 3102 | return self.element.is_derived_from(fromclause) |
| 3103 | |
| 3104 | def alias( |
| 3105 | self, name: Optional[str] = None, flat: bool = False |
| 3106 | ) -> NamedFromGrouping[_KeyColCC_co]: |
| 3107 | return NamedFromGrouping(self.element.alias(name=name, flat=flat)) |
| 3108 | |
| 3109 | def _anonymous_fromclause( |
| 3110 | self, *, name: Optional[str] = None, flat: bool = False |
nothing calls this directly
no test coverage detected