]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- The limit/offset keywords to select() as well
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 7 Apr 2011 17:34:38 +0000 (13:34 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 7 Apr 2011 17:34:38 +0000 (13:34 -0400)
commit51fea2e159ca93daa0bc8066a5c35d8436d99418
treeb66da19cf5cd027a31a7b574dbeee5ecd529527b
parent708a25e76a3cb9528c65d45ad37fc562cf178e44
- The limit/offset keywords to select() as well
as the value passed to select.limit()/offset()
will be coerced to integer.  [ticket:2116]
(also in 0.6.7)
- Oracle dialect adds use_binds_for_limits=False
create_engine() flag, will render the LIMIT/OFFSET
values inline instead of as binds, reported to
modify the execution plan used by Oracle.
[ticket:2116] (Also in 0.6.7)
CHANGES
lib/sqlalchemy/dialects/oracle/base.py
lib/sqlalchemy/sql/expression.py
lib/sqlalchemy/util/__init__.py
lib/sqlalchemy/util/langhelpers.py
test/dialect/test_oracle.py
test/sql/test_compiler.py