MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / keys

Method keys

lib/sqlalchemy/sql/base.py:1900–1903  ·  view source on GitHub ↗

Return a sequence of string key names for all columns in this collection.

(self)

Source from the content-addressed store, hash-verified

1898 return [col for (_, col, _) in self._collection]
1899
1900 def keys(self) -> List[_COLKEY]:
1901 """Return a sequence of string key names for all columns in this
1902 collection."""
1903 return [k for (k, _, _) in self._collection]
1904
1905 def values(self) -> List[_COL_co]:
1906 """Return a sequence of :class:`_sql.ColumnClause` or

Callers 5

column_keysMethod · 0.45
__init__Method · 0.45
_render_cte_clauseMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected