From: Mike Bayer Date: Sun, 29 Oct 2023 20:20:40 +0000 (-0400) Subject: changelog edits X-Git-Tag: rel_1_4_50~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f259b104dd2bb56b1e666ea5e69c576250e2419b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git changelog edits Change-Id: I98b1541948407ee7e2d17b6032ba271df2163919 --- diff --git a/doc/build/changelog/changelog_14.rst b/doc/build/changelog/changelog_14.rst index d54c9f8e06..1409f9db5c 100644 --- a/doc/build/changelog/changelog_14.rst +++ b/doc/build/changelog/changelog_14.rst @@ -123,16 +123,17 @@ This document details individual issue-level changes made throughout :tickets: 9075 :versions: 2.0.0rc3 - Fixed bug / regression where using :func:`.bindparam()` with the same name - as a column in the :meth:`.Update.values` method of :class:`.Update`, as - well as the :meth:`.Insert.values` method of :class:`.Insert` in 2.0 only, - would in some cases silently fail to honor the SQL expression in which the - parameter were presented, replacing the expression with a new parameter of - the same name and discarding any other elements of the SQL expression, such - as SQL functions, etc. The specific case would be statements that were + Fixed bug / regression where using :func:`.bindparam()` with the same + name as a column in the :meth:`.Update.values` method of + :class:`.Update`, as well as the :meth:`_dml.Insert.values` method of + :class:`_dml.Insert` in 2.0 only, would in some cases silently fail to + honor the SQL expression in which the parameter were presented, + replacing the expression with a new parameter of the same name and + discarding any other elements of the SQL expression, such as SQL + functions, etc. The specific case would be statements that were constructed against ORM entities rather than plain :class:`.Table` instances, but would occur if the statement were invoked with a - :class:`.Session` or a :class:`.Connection`. + :class:`.Session` or a :class:`_engine.Connection`. :class:`.Update` part of the issue was present in both 2.0 and 1.4 and is backported to 1.4.