]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Fixed a long-standing bug where the :class:`.Enum` type as used
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 4 Apr 2015 16:02:51 +0000 (12:02 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 4 Apr 2015 16:07:34 +0000 (12:07 -0400)
commit0775c90ce090337c535d9657e2a8641c2a1ccd5d
tree5a83edbabdc0cdbccc0b001bb4f0181bab0db3ff
parent7c32b4c2a61e52c1eceb63ebc154c9cc528feb9e
- Fixed a long-standing bug where the :class:`.Enum` type as used
with the psycopg2 dialect in conjunction with non-ascii values
and ``native_enum=False`` would fail to decode return results properly.
This stemmed from when the PG :class:`.postgresql.ENUM` type used
to be a standalone type without a "non native" option.
fixes #3354
cherry pick from ecd7b31d5eaed138e699293719f70260da3c978d
doc/build/changelog/changelog_09.rst
lib/sqlalchemy/dialects/postgresql/psycopg2.py
test/dialect/postgresql/test_types.py