]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
these pass on +zxjdbc, seemingly because it lacks a sane rowcount
authorPhilip Jenvey <pjenvey@underboss.org>
Fri, 12 Mar 2010 19:07:53 +0000 (11:07 -0800)
committerPhilip Jenvey <pjenvey@underboss.org>
Fri, 12 Mar 2010 19:07:53 +0000 (11:07 -0800)
test/orm/test_naturalpks.py

index 3f327a9072cbe5c474ff58ffb95bc60b1b2ad042..44dce446b5efe85a398f84e979e845b7b24fb763 100644 (file)
@@ -594,7 +594,7 @@ class CascadeToFKPKTest(_base.MappedTest, testing.AssertsCompiledSQL):
         self._test_onetomany(True)
 
     # PG etc. need passive=True to allow PK->PK cascade
-    @testing.fails_on_everything_except('sqlite', 'oracle')
+    @testing.fails_on_everything_except('sqlite', 'oracle', '+zxjdbc')
     def test_onetomany_nonpassive(self):
         self._test_onetomany(False)
         
@@ -737,7 +737,7 @@ class JoinedInheritanceTest(_base.MappedTest):
         self._test_pk(True)
 
     # PG etc. need passive=True to allow PK->PK cascade
-    @testing.fails_on_everything_except('sqlite', 'oracle')
+    @testing.fails_on_everything_except('sqlite', 'oracle', '+zxjdbc')
     def test_pk_nonpassive(self):
         self._test_pk(False)
         
@@ -747,7 +747,7 @@ class JoinedInheritanceTest(_base.MappedTest):
         self._test_fk(True)
         
     # PG etc. need passive=True to allow PK->PK cascade
-    @testing.fails_on_everything_except('sqlite')
+    @testing.fails_on_everything_except('sqlite', '+zxjdbc')
     def test_fk_nonpassive(self):
         self._test_fk(False)