]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- MySQL ENUM types can now optionally ensure that values are within the
authorJason Kirtland <jek@discorporate.us>
Wed, 2 May 2007 00:41:52 +0000 (00:41 +0000)
committerJason Kirtland <jek@discorporate.us>
Wed, 2 May 2007 00:41:52 +0000 (00:41 +0000)
commitd03b5327b778434884b1884c28173e24f08ade61
tree4ff8024ae37c2d0a90c75318c6cd123f296fcf77
parent29c20992dca729f34226c3abb284e44e140b5214
- MySQL ENUM types can now optionally ensure that values are within the
  enum's allowed range on insert and update, with strict=True
- Added new 'dialect' category of unit tests, and migrated MySQL-specific
  dialect tests there.
- Noted the max identifier length in the MySQL dialect (the max alias length,
  actually)
lib/sqlalchemy/databases/mysql.py
test/alltests.py
test/dialect/__init__.py [new file with mode: 0644]
test/dialect/alltests.py [new file with mode: 0644]
test/dialect/mysql.py [new file with mode: 0644]
test/sql/testtypes.py