From: Mike Bayer Date: Mon, 8 Dec 2014 17:34:40 +0000 (-0500) Subject: - autoinc here for oracle X-Git-Tag: rel_1_0_0b1~180 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8553c195c24f67ff5d75893ddad57d1003fb9759;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - autoinc here for oracle --- 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)),