]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
change sql to schema
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 6 Apr 2021 22:49:58 +0000 (18:49 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 6 Apr 2021 22:51:11 +0000 (18:51 -0400)
Change-Id: Ida93320d9b57e076786acc73a1c835cf1961675f
(cherry picked from commit dea0ac910ff941d5bbba0d922fb6eff5890d197c)

doc/build/changelog/unreleased_13/6135.rst

index 12fb9eb239a8975c2e3c8ddf606bebaf976ba76c..942b04edf9656de4bca0c94e0c9d517c4ba4b3ab 100644 (file)
@@ -1,10 +1,10 @@
 .. change::
-    :tags: sql, bug
+    :tags: schema, bug
     :tickets: 6135
     :versions: 1.4.6
 
-    The :class:`_sql.Table` object now raises an informative error message if
-    it is instantiated without passing at least the :paramref:`_sql.Table.name`
-    and :paramref:`_sql.Table.metadata` arguments positionally. Previously, if
+    The :class:`_schema.Table` object now raises an informative error message if
+    it is instantiated without passing at least the :paramref:`_schema.Table.name`
+    and :paramref:`_schema.Table.metadata` arguments positionally. Previously, if
     these were passed as keyword arguments, the object would silently fail to
     initialize correctly.