summaryrefslogtreecommitdiff
path: root/test/testlib/schema.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/testlib/schema.py')
-rw-r--r--test/testlib/schema.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testlib/schema.py b/test/testlib/schema.py
index 63eb5be92..feea8355b 100644
--- a/test/testlib/schema.py
+++ b/test/testlib/schema.py
@@ -69,6 +69,6 @@ def Column(*args, **kw):
if testing.against('oracle'):
if 'test_needs_autoincrement' in test_opts:
args = list(args)
- args.append(schema.Sequence(args[0], optional=True))
+ args.append(schema.Sequence(args[0] + "_seq", optional=True))
return schema.Column(*args, **kw)