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

Method copy

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

Source from the content-addressed store, hash-verified

5230 "and will be removed in a future release.",
5231 )
5232 def copy(
5233 self,
5234 *,
5235 schema: Optional[str] = None,
5236 target_table: Optional[Table] = None,
5237 **kw: Any,
5238 ) -> ForeignKeyConstraint:
5239 return self._copy(schema=schema, target_table=target_table, **kw)
5240
5241 def _copy(
5242 self,

Callers

nothing calls this directly

Calls 1

_copyMethod · 0.95

Tested by

no test coverage detected