From: Ants Aasma Date: Sat, 6 Oct 2007 01:31:22 +0000 (+0000) Subject: a typo on postgres returning test version check - change <8.4 -> <8.2 X-Git-Tag: rel_0_4_0~69 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d87ecbdd003b4273e1e259b6251c49069258a876;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git a typo on postgres returning test version check - change <8.4 -> <8.2 --- diff --git a/test/dialect/postgres.py b/test/dialect/postgres.py index 24fa917058..82f41f80a0 100644 --- a/test/dialect/postgres.py +++ b/test/dialect/postgres.py @@ -58,7 +58,7 @@ class CompileTest(SQLCompileTest): class ReturningTest(AssertMixin): @testing.supported('postgres') - @testing.exclude('postgres', '<', (8, 4)) + @testing.exclude('postgres', '<', (8, 2)) def test_update_returning(self): meta = MetaData(testbase.db) table = Table('tables', meta, @@ -79,7 +79,7 @@ class ReturningTest(AssertMixin): table.drop() @testing.supported('postgres') - @testing.exclude('postgres', '<', (8, 4)) + @testing.exclude('postgres', '<', (8, 2)) def test_insert_returning(self): meta = MetaData(testbase.db) table = Table('tables', meta,