]> 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:26:08 +0000 (12:26 -0400)
commitb090e3a3e27430cd4d3bc6a588db4849339d0ea7
treed7151c4b27fec108431d2b8d46757a07eae07fad
parenta904cd01d88a7a3e673c671aea0ecfa6d449927b
- 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