MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / copy

Method copy

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

Source from the content-addressed store, hash-verified

4795 "is deprecated and will be removed in a future release.",
4796 )
4797 def copy(
4798 self,
4799 *,
4800 target_table: Optional[Table] = None,
4801 **kw: Any,
4802 ) -> ColumnCollectionConstraint:
4803 return self._copy(target_table=target_table, **kw)
4804
4805 def _copy(
4806 self,

Callers

nothing calls this directly

Calls 1

_copyMethod · 0.95

Tested by

no test coverage detected