diff options
Diffstat (limited to 'test/dialect/postgres.py')
-rw-r--r-- | test/dialect/postgres.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dialect/postgres.py b/test/dialect/postgres.py index 24fa91705..82f41f80a 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, |