]> 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:25 +0000 (12:34 -0500)
commitfc2d19537331e07ae8b75b9a356fbaebd8046a0b
treefdc947f653d5633ca389fd1c939c3565b8d95598
parentc5d2f0999b15979a7251eb305127da1c53cbff55
- 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