From 9a3a909ed2fc918c7cc7dd80b578bb0991d60bd9 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 11 Mar 2010 18:21:44 +0000 Subject: [PATCH] this test requires a length for the varchar in mysql/oracle --- test/sql/test_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sql/test_types.py b/test/sql/test_types.py index 3e9242481d..f9bd5c1738 100644 --- a/test/sql/test_types.py +++ b/test/sql/test_types.py @@ -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() -- 2.47.3