From: Mike Bayer Date: Sun, 22 Oct 2006 05:50:03 +0000 (+0000) Subject: added string length to avoid LOB col type in oracle X-Git-Tag: rel_0_3_0~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=066d8dc79c66f362987ad666c9021abec11b382b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git added string length to avoid LOB col type in oracle --- diff --git a/test/sql/case_statement.py b/test/sql/case_statement.py index fc0e919a5b..1a75d5289e 100644 --- a/test/sql/case_statement.py +++ b/test/sql/case_statement.py @@ -9,7 +9,7 @@ class CaseTest(testbase.PersistTest): global info_table info_table = Table('infos', testbase.db, Column('pk', Integer, primary_key=True), - Column('info', String)) + Column('info', String(30))) info_table.create()