From 225e51a7967d8da8fdcb81a742b75007d23bca08 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 17 Feb 2007 02:31:56 +0000 Subject: - added a Sequence to the unicode test tables to help Oracle - fixed named PrimaryKeyConstraint generation on oracle [ticket:466] courtesy andrija at gmail --- test/sql/constraints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/sql/constraints.py') diff --git a/test/sql/constraints.py b/test/sql/constraints.py index 045d44968..886baef0c 100644 --- a/test/sql/constraints.py +++ b/test/sql/constraints.py @@ -23,7 +23,7 @@ class ConstraintTest(testbase.AssertMixin): Column('stuff', String(30)), Column('emp_id', Integer), Column('emp_soc', String(40)), - PrimaryKeyConstraint('id'), + PrimaryKeyConstraint('id', name='elements_primkey'), ForeignKeyConstraint(['emp_id', 'emp_soc'], ['employees.id', 'employees.soc']) ) metadata.create_all() -- cgit v1.2.1