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

Method copy

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

Source from the content-addressed store, hash-verified

4848 "and will be removed in a future release.",
4849 )
4850 def copy(
4851 self,
4852 *,
4853 schema: Optional[str] = None,
4854 target_table: Optional[Table] = None,
4855 **kw: Any,
4856 ) -> ForeignKeyConstraint:
4857 return self._copy(schema=schema, target_table=target_table, **kw)
4858
4859 def _copy(
4860 self,

Callers

nothing calls this directly

Calls 1

_copyMethod · 0.95

Tested by

no test coverage detected