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

Method copy

lib/sqlalchemy/sql/schema.py:4417–4423  ·  view source on GitHub ↗
(
        self,
        *,
        target_table: Optional[Table] = None,
        **kw: Any,
    )

Source from the content-addressed store, hash-verified

4415 "is deprecated and will be removed in a future release.",
4416 )
4417 def copy(
4418 self,
4419 *,
4420 target_table: Optional[Table] = None,
4421 **kw: Any,
4422 ) -> ColumnCollectionConstraint:
4423 return self._copy(target_table=target_table, **kw)
4424
4425 def _copy(
4426 self,

Callers

nothing calls this directly

Calls 1

_copyMethod · 0.95

Tested by

no test coverage detected