]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Fixed bug whereby SQLite compiler failed to propagate compiler arguments
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 31 Jan 2014 22:57:17 +0000 (17:57 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 31 Jan 2014 22:57:17 +0000 (17:57 -0500)
commitb360dbf7ebb7cc5bb290847fdd9818d205244a94
treeec96fe0440c5f1165b54bfc9a993b3aa1c39924a
parent4b57df9e30b0181d9b9f2cad558a6f8362b0184a
- Fixed bug whereby SQLite compiler failed to propagate compiler arguments
such as "literal binds" into a CAST expression.
- Fixed bug whereby binary type would fail in some cases
if used with a "test" dialect, such as a DefaultDialect or other
dialect with no DBAPI.
- Fixed bug where "literal binds" wouldn't work with a bound parameter
that's a binary type.  A similar, but different, issue is fixed
in 0.8.
doc/build/changelog/changelog_09.rst
lib/sqlalchemy/dialects/sqlite/base.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/sqltypes.py
test/sql/test_compiler.py
test/sql/test_types.py