From 8553c195c24f67ff5d75893ddad57d1003fb9759 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 8 Dec 2014 12:34:40 -0500 Subject: [PATCH] - autoinc here for oracle --- test/orm/test_naturalpks.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/orm/test_naturalpks.py b/test/orm/test_naturalpks.py index 709e1c0b1d..60387ddce2 100644 --- a/test/orm/test_naturalpks.py +++ b/test/orm/test_naturalpks.py @@ -1228,7 +1228,9 @@ class JoinedInheritancePKOnFKTest(fixtures.MappedTest): Table( 'engineer', metadata, - Column('id', Integer, primary_key=True), + Column( + 'id', Integer, + primary_key=True, test_needs_autoincrement=True), Column( 'person_name', String(50), ForeignKey('person.name', **fk_args)), -- 2.47.3