From: Mike Bayer Date: Sun, 22 Nov 2009 22:21:08 +0000 (+0000) Subject: add NATIONAL CHAR test X-Git-Tag: rel_0_6beta1~157 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6249922a26be1134b47c8e9d87a3f40c7354e4ac;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git add NATIONAL CHAR test --- diff --git a/test/dialect/test_mysql.py b/test/dialect/test_mysql.py index 325f518daa..f40fa89bd2 100644 --- a/test/dialect/test_mysql.py +++ b/test/dialect/test_mysql.py @@ -209,6 +209,8 @@ class TypesTest(TestBase, AssertsExecutionResults, AssertsCompiledSQL): columns = [ (mysql.MSChar, [1], {}, 'CHAR(1)'), + (mysql.NCHAR, [1], {}, + 'NATIONAL CHAR(1)'), (mysql.MSChar, [1], {'binary':True}, 'CHAR(1) BINARY'), (mysql.MSChar, [1], {'ascii':True},