summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/databases/mysql.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-10-18 17:56:18 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-10-18 17:56:18 +0000
commitf32131dac212fdee1a6e97eba4a4ed21e51b3607 (patch)
tree8d9417d9e609779f8172e2ac2f5759bef5b9db81 /lib/sqlalchemy/databases/mysql.py
parented2d7dc80545d2ed1dd79a393efff8e20024126f (diff)
downloadsqlalchemy-f32131dac212fdee1a6e97eba4a4ed21e51b3607.tar.gz
- added test coverage for unknown type reflection, fixed
sqlite/mysql handling of type reflection for unknown types
Diffstat (limited to 'lib/sqlalchemy/databases/mysql.py')
-rw-r--r--lib/sqlalchemy/databases/mysql.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/databases/mysql.py b/lib/sqlalchemy/databases/mysql.py
index 66b62c215..de417f3a5 100644
--- a/lib/sqlalchemy/databases/mysql.py
+++ b/lib/sqlalchemy/databases/mysql.py
@@ -2046,7 +2046,7 @@ class MySQLSchemaReflector(object):
warnings.warn(RuntimeWarning(
"Did not recognize type '%s' of column '%s'" %
(type_, name)))
- col_type = sqltypes.NULLTYPE
+ col_type = sqltypes.NullType
# Column type positional arguments eg. varchar(32)
if args is None or args == '':