summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2023-04-13 21:05:47 +0000
committerGerrit Code Review <gerrit@bbpush.zzzcomputing.com>2023-04-13 21:05:47 +0000
commitd1b1ca04323ba3f294c910b8d94153f307370651 (patch)
tree604b54aad94000e6576ba2e0f379de52b3508b0e
parent4f104c9cb54e1429947d5bbf9375c86dcd07c0c9 (diff)
parentebee59224e7b6cb3058c1a6b2a747a2f91d1ae5b (diff)
downloadsqlalchemy-d1b1ca04323ba3f294c910b8d94153f307370651.tar.gz
Merge "Add additional seealso to schema reflect parameters" into main
-rw-r--r--lib/sqlalchemy/sql/schema.py19
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: