]> 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:47:43 +0000 (13:47 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 7 Apr 2011 17:47:43 +0000 (13:47 -0400)
commitf5893458a1781b84edff390ba5220ed1c6393f32
treec4166d0377aa980003bb444fb1c12e98a4341fc2
parenta0bd9055e91cda804ad4153ba4a6407f16c4b508
- The limit/offset keywords to select() as well
as the value passed to select.limit()/offset()
will be coerced to integer.  [ticket:2116]
- 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]
CHANGES
lib/sqlalchemy/dialects/oracle/base.py
lib/sqlalchemy/sql/expression.py
lib/sqlalchemy/util.py
test/dialect/test_oracle.py
test/sql/test_compiler.py