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 3e5c200e4..83ca6c6f6 100644 --- a/test/dialect/postgres.py +++ b/test/dialect/postgres.py @@ -61,7 +61,7 @@ class CompileTest(TestBase, AssertsCompiledSQL): class ReturningTest(TestBase, AssertsExecutionResults): __only_on__ = 'postgres' - @testing.exclude('postgres', '<', (8, 2)) + @testing.exclude('postgres', '<', (8, 2), '8.3+ feature') def test_update_returning(self): meta = MetaData(testing.db) table = Table('tables', meta, @@ -81,7 +81,7 @@ class ReturningTest(TestBase, AssertsExecutionResults): finally: table.drop() - @testing.exclude('postgres', '<', (8, 2)) + @testing.exclude('postgres', '<', (8, 2), '8.3+ feature') def test_insert_returning(self): meta = MetaData(testing.db) table = Table('tables', meta, |