MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / append_column

Method append_column

lib/sqlalchemy/sql/selectable.py:3266–3268  ·  view source on GitHub ↗

Append a :class:`.ColumnClause` to this :class:`.TableClause`.

(self, column: ColumnClause[Any])

Source from the content-addressed store, hash-verified

3264 c.table = self
3265
3266 def append_column(self, column: ColumnClause[Any]) -> None:
3267 """Append a :class:`.ColumnClause` to this :class:`.TableClause`."""
3268 self._insert_col_impl(column)
3269
3270 def insert_column(self, column: ColumnClause[Any], index: int) -> None:
3271 """Insert a :class:`.ColumnClause` to this :class:`.TableClause` at

Callers 1

__init__Method · 0.95

Calls 1

_insert_col_implMethod · 0.95

Tested by

no test coverage detected