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

Method contains_column

lib/sqlalchemy/sql/base.py:2232–2233  ·  view source on GitHub ↗
(self, col: ColumnClause[Any])

Source from the content-addressed store, hash-verified

2230
2231class ColumnSet(util.OrderedSet["ColumnClause[Any]"]):
2232 def contains_column(self, col: ColumnClause[Any]) -> bool:
2233 return col in self
2234
2235 def extend(self, cols: Iterable[Any]) -> None:
2236 for col in cols:

Callers 15

_columns_are_mappedMethod · 0.45
replMethod · 0.45
proc_left_rightMethod · 0.45
_configure_propertiesMethod · 0.45
_setup_tableMethod · 0.45
_create_eager_joinMethod · 0.45
test_copyMethod · 0.45
test_pks_not_uniquesMethod · 0.45
test_composite_pksMethod · 0.45
test_contains_columnMethod · 0.45

Calls

no outgoing calls