]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- MySQL bool type fix: [ticket:307]
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 9 Dec 2006 04:06:34 +0000 (04:06 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 9 Dec 2006 04:06:34 +0000 (04:06 +0000)
CHANGES
lib/sqlalchemy/databases/mysql.py

diff --git a/CHANGES b/CHANGES
index 12e101670b7c9e4c98e523d077ceed6881cc6610..af2ca2570cfc2ab1e7b9b63217c6d85857648a0a 100644 (file)
--- 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]
index b87e2d6e942297223aa4e904072c7babd069e514..c795ae7d4c05424f943cf4919e1eba00a0adcf82 100644 (file)
@@ -207,6 +207,7 @@ colspecs = {
 }
 
 ischema_names = {
+    'boolean':MSBoolean,
     'bigint' : MSBigInteger,
     'int' : MSInteger,
     'mediumint' : MSInteger,