]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Fixed a SQLite join rewriting issue where a subquery that is embedded
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 15 Jul 2014 16:25:38 +0000 (12:25 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 15 Jul 2014 16:25:38 +0000 (12:25 -0400)
commit3d7b18863813d98c66d76c5fbbba037d1ed18930
treec33f34e6b72c208fa429bc03d9b811cfa61bb34a
parentf4653729a6ff952555c0192a5b0f0851c4d40ad5
- Fixed a SQLite join rewriting issue where a subquery that is embedded
as a scalar subquery such as within an IN would receive inappropriate
substitutions from the enclosing query, if the same table were present
inside the subquery as were in the enclosing query such as in a
joined inheritance scenario.
fixes #3130
doc/build/changelog/changelog_09.rst
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/elements.py
lib/sqlalchemy/sql/selectable.py
test/sql/test_join_rewriting.py