diff options
author | Federico Caselli <cfederico87@gmail.com> | 2023-04-06 22:53:28 +0200 |
---|---|---|
committer | Federico Caselli <cfederico87@gmail.com> | 2023-04-13 21:07:59 +0200 |
commit | ebee59224e7b6cb3058c1a6b2a747a2f91d1ae5b (patch) | |
tree | a45fb6b6698a49b2892f08de9c9f1d8654bcdc60 | |
parent | b066c45dc491716a4e34bdeb9a9726bcbc136fb5 (diff) | |
download | sqlalchemy-ebee59224e7b6cb3058c1a6b2a747a2f91d1ae5b.tar.gz |
Add additional seealso to schema reflect parameters
References: #9606
Change-Id: I1213f881621a80eb78a2db84e53150437144f26c
-rw-r--r-- | lib/sqlalchemy/sql/schema.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/sqlalchemy/sql/schema.py b/lib/sqlalchemy/sql/schema.py index c8d99cf89..7d964ad05 100644 --- a/lib/sqlalchemy/sql/schema.py +++ b/lib/sqlalchemy/sql/schema.py @@ -579,6 +579,14 @@ class Table( When set to a non-None value, the autoload process will take place for this table against the given engine or connection. + .. seealso:: + + :ref:`metadata_reflection_toplevel` + + :meth:`_events.DDLEvents.column_reflect` + + :ref:`metadata_reflection_dbagnostic_types` + :param extend_existing: When ``True``, indicates that if this :class:`_schema.Table` is already present in the given :class:`_schema.MetaData`, @@ -5376,6 +5384,17 @@ class MetaData(HasSchemaAttr): individual dialect at :ref:`dialect_toplevel` for detail on documented arguments. + .. seealso:: + + :ref:`metadata_reflection_toplevel` + + :meth:`_events.DDLEvents.column_reflect` - Event used to customize + the reflected columns. Usually used to generalize the types using + :meth:`_types.TypeEngine.as_generic` + + :ref:`metadata_reflection_dbagnostic_types` - describes how to + reflect tables using general types. + """ with inspection.inspect(bind)._inspection_context() as insp: |