]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Fixed bug where the combination of "limit" rendering as
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 30 Apr 2014 23:06:26 +0000 (19:06 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 30 Apr 2014 23:07:45 +0000 (19:07 -0400)
commit2a458680a49376b8a11b342bc679a870cdc05da6
tree53f80d9269d0d602a01b11b57e5db518f3d0e2b3
parent1caa7fafbd3c9870e1bf2b2ac623872447fc804e
- Fixed bug where the combination of "limit" rendering as
"SELECT FIRST n ROWS" using a bound parameter (only firebird has both),
combined with column-level subqueries
which also feature "limit" as well as "positional" bound parameters
(e.g. qmark style) would erroneously assign the subquery-level positions
before that of the enclosing SELECT, thus returning parameters which
are out of order. Fixes #3038
doc/build/changelog/changelog_09.rst
lib/sqlalchemy/sql/compiler.py
test/dialect/test_firebird.py
test/sql/test_compiler.py