]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
a typo on postgres returning test version check - change <8.4 -> <8.2
authorAnts Aasma <ants.aasma@gmail.com>
Sat, 6 Oct 2007 01:31:22 +0000 (01:31 +0000)
committerAnts Aasma <ants.aasma@gmail.com>
Sat, 6 Oct 2007 01:31:22 +0000 (01:31 +0000)
test/dialect/postgres.py

index 24fa9170588279eb3f26b3c2c26dffd54e302c47..82f41f80a0eeab7abf5a6c731c255e36250a6683 100644 (file)
@@ -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,