(
cls, statement: Select[Unpack[TupleAny]]
)
| 4925 | |
| 4926 | @classmethod |
| 4927 | def get_columns_clause_froms( |
| 4928 | cls, statement: Select[Unpack[TupleAny]] |
| 4929 | ) -> List[FromClause]: |
| 4930 | return cls._normalize_froms( |
| 4931 | itertools.chain.from_iterable( |
| 4932 | element._from_objects for element in statement._raw_columns |
| 4933 | ) |
| 4934 | ) |
| 4935 | |
| 4936 | @classmethod |
| 4937 | def _column_naming_convention( |
no test coverage detected