]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Fixed issue where the columns from a SELECT embedded in an
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 11 Nov 2014 17:34:00 +0000 (12:34 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 11 Nov 2014 17:34:00 +0000 (12:34 -0500)
commitb013fb82f5a5d891c6fd776e0e6ed926cdf2ffe1
tree4b6bff8cba6409032a6450e399aeb102e6edc0d1
parent21022f9760e32cf54d59eaccc12cc9e2fea1d37a
- Fixed issue where the columns from a SELECT embedded in an
INSERT, either through the values clause or as a "from select",
would pollute the column types used in the result set produced by
the RETURNING clause when columns from both statements shared the
same name, leading to potential errors or mis-adaptation when
retrieving the returning rows.
fixes #3248
doc/build/changelog/changelog_09.rst
lib/sqlalchemy/sql/compiler.py
test/sql/test_compiler.py
test/sql/test_returning.py