]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Add additional seealso to schema reflect parameters
authorFederico Caselli <cfederico87@gmail.com>
Thu, 6 Apr 2023 20:53:28 +0000 (22:53 +0200)
committerFederico Caselli <cfederico87@gmail.com>
Thu, 13 Apr 2023 19:07:59 +0000 (21:07 +0200)
References: #9606
Change-Id: I1213f881621a80eb78a2db84e53150437144f26c

lib/sqlalchemy/sql/schema.py

index c8d99cf891fbe921e87468308bf91cacf8f68f8b..7d964ad05018d44ffda63f48e047ff65c735601f 100644 (file)
@@ -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: