]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
The MySQL :class:`.mysql.SET` type now features the same auto-quoting
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 14 Oct 2013 20:12:54 +0000 (16:12 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 14 Oct 2013 20:12:54 +0000 (16:12 -0400)
commit92534dc8f30d173deaa1221a6872fd9b7ceae325
treeca8d70482cdcf9188e77d05812f0b59ec9ebbe2d
parent78a38967c4ad94194308f77f60a922236cd75227
The MySQL :class:`.mysql.SET` type now features the same auto-quoting
behavior as that of :class:`.mysql.ENUM`.  Quotes are not required when
setting up the value, but quotes that are present will be auto-detected
along with a warning.  This also helps with Alembic where
the SET type doesn't render with quotes. [ticket:2817]
doc/build/changelog/changelog_09.rst
lib/sqlalchemy/dialects/mysql/base.py
lib/sqlalchemy/testing/__init__.py
lib/sqlalchemy/testing/assertions.py
test/dialect/mysql/test_reflection.py
test/dialect/mysql/test_types.py