]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- The workaround for right-nested joins on SQLite, where they are rewritten
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 26 Jan 2016 20:41:56 +0000 (15:41 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 26 Jan 2016 21:09:23 +0000 (16:09 -0500)
commit9d9fc93b7065d25a088e244961cf54606ad80b31
tree3d81235c6856e9da2f85f8e42df6e681821e2027
parentdf3f125bd84fc7ec5d45592c5774daf3a39d9bc9
- The workaround for right-nested joins on SQLite, where they are rewritten
as subqueries in order to work around SQLite's lack of support for this
syntax, is lifted when SQLite version 3.7.16 or greater is detected.
fixes #3634
- The workaround for SQLite's unexpected delivery of column names as
``tablename.columnname`` for some kinds of queries is now disabled
when SQLite version 3.10.0 or greater is detected.
fixes #3633
doc/build/changelog/changelog_11.rst
doc/build/changelog/migration_11.rst
lib/sqlalchemy/dialects/sqlite/base.py
lib/sqlalchemy/sql/compiler.py
test/profiles.txt
test/sql/test_join_rewriting.py