summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-04-30 19:06:26 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-04-30 19:07:45 -0400
commit2a458680a49376b8a11b342bc679a870cdc05da6 (patch)
tree53f80d9269d0d602a01b11b57e5db518f3d0e2b3 /doc
parent1caa7fafbd3c9870e1bf2b2ac623872447fc804e (diff)
downloadsqlalchemy-2a458680a49376b8a11b342bc679a870cdc05da6.tar.gz
- 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
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_09.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst
index f51244815..cd8cb0ac1 100644
--- a/doc/build/changelog/changelog_09.rst
+++ b/doc/build/changelog/changelog_09.rst
@@ -36,6 +36,16 @@
needs to have a table-bound column present if the index is to be
manually added to the table, either via inline declaration or via
:meth:`.Table.append_constraint`.
+ :tags: bug, firebird
+ :tickets: 3038
+
+ 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.
.. change::
:tags: bug, mssql