From: Mike Bayer Date: Tue, 31 May 2022 21:21:39 +0000 (-0400) Subject: changelog fixes X-Git-Tag: rel_1_4_37~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2366fa222b3dc6c9373c8a0c659c61a8c943f94;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git changelog fixes Change-Id: Id3fc3019f8eb799aa5adf6ca28e0aeedc0da31dd (cherry picked from commit 1e8e4ace63f93327e5c7e000acb6c0efb595eed1) --- diff --git a/doc/build/changelog/unreleased_14/7979.rst b/doc/build/changelog/unreleased_14/7979.rst index 9a82a29097..e4aec5c403 100644 --- a/doc/build/changelog/unreleased_14/7979.rst +++ b/doc/build/changelog/unreleased_14/7979.rst @@ -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`. diff --git a/doc/build/changelog/unreleased_14/8014.rst b/doc/build/changelog/unreleased_14/8014.rst index 331a9577c5..168100bb22 100644 --- a/doc/build/changelog/unreleased_14/8014.rst +++ b/doc/build/changelog/unreleased_14/8014.rst @@ -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.