overrides FromClause.entity_namespace as functions are generally column expressions and not FromClauses.
(self)
| 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 | |
| 824 | class FunctionAsBinary(BinaryExpression[Any]): |
nothing calls this directly
no test coverage detected