MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _col_bind_name

Function _col_bind_name

lib/sqlalchemy/sql/crud.py:620–626  ·  view source on GitHub ↗
(col: ColumnClause[Any])

Source from the content-addressed store, hash-verified

618 return col.key
619
620 def _col_bind_name(col: ColumnClause[Any]) -> str:
621 if col.table in _et:
622 if TYPE_CHECKING:
623 assert isinstance(col.table, TableClause)
624 return "%s_%s" % (col.table.name, col.key)
625 else:
626 return col.key
627
628 else:
629 _column_as_key = functools.partial(

Callers 2

_append_param_parameterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected