MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / c

Method c

lib/sqlalchemy/sql/functions.py:414–419  ·  view source on GitHub ↗

synonym for :attr:`.FunctionElement.columns`.

(self)

Source from the content-addressed store, hash-verified

412
413 @util.ro_memoized_property
414 def c(self) -> ColumnCollection[str, KeyedColumnElement[Any]]: # type: ignore[override] # noqa: E501
415 """synonym for :attr:`.FunctionElement.columns`."""
416
417 return ColumnCollection(
418 columns=[(col.key, col) for col in self._all_selected_columns]
419 )
420
421 @property
422 def _all_selected_columns(self) -> Sequence[KeyedColumnElement[Any]]:

Callers

nothing calls this directly

Calls 1

ColumnCollectionClass · 0.85

Tested by

no test coverage detected