MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / entity_namespace

Method entity_namespace

lib/sqlalchemy/sql/functions.py:814–821  ·  view source on GitHub ↗

overrides FromClause.entity_namespace as functions are generally column expressions and not FromClauses.

(self)

Source from the content-addressed store, hash-verified

812
813 @property
814 def entity_namespace(self) -> _EntityNamespace:
815 """overrides FromClause.entity_namespace as functions are generally
816 column expressions and not FromClauses.
817
818 """
819 # ideally functions would not be fromclauses but we failed to make
820 # this adjustment in 1.4
821 return _entity_namespace(self.clause_expr)
822
823
824class FunctionAsBinary(BinaryExpression[Any]):

Callers

nothing calls this directly

Calls 1

_entity_namespaceFunction · 0.85

Tested by

no test coverage detected