]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
further changelog / doc fixes
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 30 Mar 2022 15:44:23 +0000 (11:44 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 30 Mar 2022 15:44:23 +0000 (11:44 -0400)
Change-Id: I959f242272ff5147b7c1f721cf119d09309a8c57

doc/build/changelog/unreleased_14/7860.rst
doc/build/core/metadata.rst
lib/sqlalchemy/sql/schema.py

index 40ecf38fda4531a60d58aea5714db0faa3ad33e7..cc41aa00bfb6dd37c678a62d8533e631c0d5e467 100644 (file)
@@ -5,7 +5,7 @@
     Added support so that the :paramref:`.Table.to_metadata.referred_schema_fn`
     callable passed to :meth:`.Table.to_metadata` may return the value
     :attr:`.BLANK_SCHEMA` to indicate that the referenced foreign key should be
-    reset to None. The :attr:`RETAIN_SCHEMA` symbol may also be returned from
+    reset to None. The :attr:`.RETAIN_SCHEMA` symbol may also be returned from
     this function to indicate "no change", which will behave the same as
     ``None`` currently does which also indicates no change.
 
index a9d43e182e67546cfe9819dc63a0e7e74a29cdad..e4f06f1a58c158fcb7b95879da6e8d62ef63fd13 100644 (file)
@@ -576,7 +576,7 @@ Column, Table, MetaData API
 
     Symbol indicating that a :class:`_schema.Table`, :class:`.Sequence`
     or in some cases a :class:`_schema.ForeignKey` object, in situations
-    where the object is being copied for a :meth:`.MetaData.to_metadata`
+    where the object is being copied for a :meth:`.Table.to_metadata`
     operation, should retain the schema name that it already has.
 
 
index b3957917963ebde4a6242feb92c3388b3e4ebaa9..2118868fc9f1d05bdd0d52dbe25505926405577a 100644 (file)
@@ -91,7 +91,7 @@ RETAIN_SCHEMA = util.symbol(
     "retain_schema"
     """Symbol indicating that a :class:`_schema.Table`, :class:`.Sequence`
     or in some cases a :class:`_schema.ForeignKey` object, in situations
-    where the object is being copied for a :meth:`.MetaData.to_metadata`
+    where the object is being copied for a :meth:`.Table.to_metadata`
     operation, should retain the schema name that it already has.
 
     """