]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
added string length to avoid LOB col type in oracle
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 22 Oct 2006 05:50:03 +0000 (05:50 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 22 Oct 2006 05:50:03 +0000 (05:50 +0000)
test/sql/case_statement.py

index fc0e919a5bb95ceeeed538225006aa703478bec3..1a75d5289ee84e0786585441394a8ac4dada73d4 100644 (file)
@@ -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()