]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Fixed bug in type_coerce() whereby typing information
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 12 Nov 2012 20:48:40 +0000 (15:48 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 12 Nov 2012 20:48:40 +0000 (15:48 -0500)
commit6397a4ff4bce537487a3b30552622544868da9a0
treeec7e985ee344749c47bd8a1f5e44c3851713960f
parent37c943233a4b01428cf4b67d766d2685309ab0e8
Fixed bug in type_coerce() whereby typing information
could be lost if the statement were used as a subquery
inside of another statement, as well as other similar
situations.  Among other things, would cause
typing information to be lost when the Oracle/mssql dialects
would apply limit/offset wrappings. [ticket:2603]
doc/build/changelog/changelog_08.rst
lib/sqlalchemy/dialects/oracle/__init__.py
lib/sqlalchemy/dialects/oracle/base.py
lib/sqlalchemy/sql/expression.py
test/dialect/test_oracle.py
test/orm/test_query.py
test/sql/test_selectable.py
test/sql/test_types.py