MCPcopy Create free account
hub / github.com/zzzeek/sqlalchemy / get_columns_clause_froms

Method get_columns_clause_froms

lib/sqlalchemy/sql/selectable.py:4927–4934  ·  view source on GitHub ↗
(
        cls, statement: Select[Unpack[TupleAny]]
    )

Source from the content-addressed store, hash-verified

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(

Callers 1

columns_clause_fromsMethod · 0.45

Calls 1

_normalize_fromsMethod · 0.80

Tested by

no test coverage detected