summaryrefslogtreecommitdiff
path: root/test/inheritance.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-03-23 06:35:27 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-03-23 06:35:27 +0000
commit26ec8e13fa80f23e5ad8ee3a84065bc5f50d057f (patch)
tree171986f6810baf486980bbb33bcf4f3fd6fa0116 /test/inheritance.py
parent05e5405051fed09597ec7ab9f41bc14aecdc4839 (diff)
downloadsqlalchemy-26ec8e13fa80f23e5ad8ee3a84065bc5f50d057f.tar.gz
added oracle8 test target, sets use_ansi to false
got mapper, objectstore, inheritance unittest working with oracle8, tweaks to join syntax
Diffstat (limited to 'test/inheritance.py')
-rw-r--r--test/inheritance.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/inheritance.py b/test/inheritance.py
index 657af8a27..3202c3417 100644
--- a/test/inheritance.py
+++ b/test/inheritance.py
@@ -95,7 +95,7 @@ class InheritTest2(testbase.AssertMixin):
engine = testbase.db
global foo, bar, foo_bar
foo = Table('foo', engine,
- Column('id', Integer, primary_key=True),
+ Column('id', Integer, Sequence('foo_id_seq'), primary_key=True),
Column('data', String(20)),
).create()