summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES1
-rw-r--r--lib/sqlalchemy/databases/mysql.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 12e101670..af2ca2570 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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,