diff options
Diffstat (limited to 'test/dialect/test_mysql.py')
-rw-r--r-- | test/dialect/test_mysql.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/dialect/test_mysql.py b/test/dialect/test_mysql.py index de1df3846..d5ce6e923 100644 --- a/test/dialect/test_mysql.py +++ b/test/dialect/test_mysql.py @@ -306,7 +306,11 @@ class TypesTest(fixtures.TestBase, AssertsExecutionResults, AssertsCompiledSQL): 'LONGTEXT ASCII'), (mysql.ENUM, ["foo", "bar"], {'unicode':True}, - '''ENUM('foo','bar') UNICODE''') + '''ENUM('foo','bar') UNICODE'''), + + (String, [20], {"collation":"utf8"}, 'VARCHAR(20) COLLATE utf8') + + ] for type_, args, kw, res in columns: |