diff options
| -rw-r--r-- | CHANGES | 1 | ||||
| -rw-r--r-- | lib/sqlalchemy/databases/mysql.py | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -13,6 +13,7 @@ back to 0.2.8 levels to have it be weak referencing, use create_session(weak_identity_map=True) - MySQL detects errors 2006 (server has gone away) and 2014 (commands out of sync) and invalidates the connection on which it occured. +- MySQL bool type fix: [ticket:307] - postgres reflection fixes: [ticket:349] [ticket:382] - added keywords for EXCEPT, INTERSECT, EXCEPT ALL, INTERSECT ALL [ticket:247] diff --git a/lib/sqlalchemy/databases/mysql.py b/lib/sqlalchemy/databases/mysql.py index b87e2d6e9..c795ae7d4 100644 --- a/lib/sqlalchemy/databases/mysql.py +++ b/lib/sqlalchemy/databases/mysql.py @@ -207,6 +207,7 @@ colspecs = { } ischema_names = { + 'boolean':MSBoolean, 'bigint' : MSBigInteger, 'int' : MSInteger, 'mediumint' : MSInteger, |
