]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
this test requires a length for the varchar in mysql/oracle
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 11 Mar 2010 18:21:44 +0000 (18:21 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 11 Mar 2010 18:21:44 +0000 (18:21 +0000)
test/sql/test_types.py

index 3e9242481da9ba58fb6b7cf25e1191c71eabeb26..f9bd5c17385be0a22247c4a71faed8b530f7b5d9 100644 (file)
@@ -721,7 +721,7 @@ class ExpressionTest(TestBase, AssertsExecutionResults, AssertsCompiledSQL):
             Column('data', String(30)),
             Column('atimestamp', Date),
             Column('avalue', MyCustomType),
-            Column('bvalue', MyTypeDec),
+            Column('bvalue', MyTypeDec(50)),
             )
 
         meta.create_all()