]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
changelog fixes
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 31 May 2022 21:21:39 +0000 (17:21 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 31 May 2022 21:21:39 +0000 (17:21 -0400)
Change-Id: Id3fc3019f8eb799aa5adf6ca28e0aeedc0da31dd

doc/build/changelog/unreleased_14/7979.rst
doc/build/changelog/unreleased_14/8014.rst

index 9a82a290979413a94642bc898ea3bd99b4021643..e4aec5c403b1e91a69f751654bb91abdd3ca773a 100644 (file)
@@ -4,6 +4,6 @@
 
     Fixed an issue where using :func:`.bindparam` with no explicit data or type
     given could be coerced into the incorrect type when used in expressions
-    such as when using :meth:`.ARRAY.comparator.any` and
-    :meth:`.ARRAY.comparator.all`.
+    such as when using :meth:`.ARRAY.Comparator.any` and
+    :meth:`.ARRAY.Comparator.all`.
 
index 331a9577c587ede85bbb7eb1f551764950d32800..168100bb2242266b452849d3b0e1d837a200ddf3 100644 (file)
@@ -2,10 +2,11 @@
     :tags: bug, sql, postgresql, sqlite
     :tickets: 8014
 
-    Fixed bug where the PostgreSQL :meth:`_postgresql.Insert.on_conflict`
-    method and the SQLite :meth:`_sqlite.Insert.on_conflict` method would both
-    fail to correctly accommodate a column with a separate ".key" when
-    specifying the column using its key name in the dictionary passed to
-    ``set_``, as well as if the :attr:`_sqlite.Insert.excluded` or
-    :attr:`_postgresql.Insert.excluded` collection were used as the dictionary
-    directly.
+    Fixed bug where the PostgreSQL
+    :meth:`_postgresql.Insert.on_conflict_do_update` method and the SQLite
+    :meth:`_sqlite.Insert.on_conflict_do_update` method would both fail to
+    correctly accommodate a column with a separate ".key" when specifying the
+    column using its key name in the dictionary passed to
+    :paramref:`_postgresql.Insert.on_conflict_do_update.set_`, as well as if
+    the :attr:`_postgresql.Insert.excluded` collection were used as the
+    dictionary directly.