]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Fixed bug where SQL statement would be improperly ASCII-encoded
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 22 Nov 2013 23:35:36 +0000 (18:35 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 22 Nov 2013 23:37:35 +0000 (18:37 -0500)
commitad85ab12d62e65b0310c778057551bcdd460f0d9
tree9ea65d5fa76cd7003e648b4d97f8f2bc1e017805
parent9d848680f46ffdabca84d7e2b3a4fd862d1f0bda
- Fixed bug where SQL statement would be improperly ASCII-encoded
when a pre-DBAPI :class:`.StatementError` were raised within
:meth:`.Connection.execute`, causing encoding errors for
non-ASCII statements.  The stringification now remains within
Python unicode thus avoiding encoding errors. [ticket:2871]

Conflicts:
test/engine/test_execute.py
doc/build/changelog/changelog_08.rst
lib/sqlalchemy/engine/base.py
test/engine/test_execute.py
test/sql/test_query.py