summaryrefslogtreecommitdiff
path: root/test/sql/case_statement.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-10-22 05:50:03 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-10-22 05:50:03 +0000
commit066d8dc79c66f362987ad666c9021abec11b382b (patch)
tree92226e6d7a9414f83ce462a4f2191a0f5471d9ed /test/sql/case_statement.py
parenta610264fe9af286e0f938ce5e3cb859b997ee7e5 (diff)
downloadsqlalchemy-066d8dc79c66f362987ad666c9021abec11b382b.tar.gz
added string length to avoid LOB col type in oracle
Diffstat (limited to 'test/sql/case_statement.py')
-rw-r--r--test/sql/case_statement.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/case_statement.py b/test/sql/case_statement.py
index fc0e919a5..1a75d5289 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()