]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
disable two phase transaction support on postgresql+zxjdbc, the jdbc driver
authorPhilip Jenvey <pjenvey@underboss.org>
Thu, 16 Jul 2009 01:15:01 +0000 (01:15 +0000)
committerPhilip Jenvey <pjenvey@underboss.org>
Thu, 16 Jul 2009 01:15:01 +0000 (01:15 +0000)
can't handle it without some more work

lib/sqlalchemy/test/requires.py

index bf524e1877bedecf06d58677184c62eb5ff58204..b4d5bc0060a8796de8d627479fef8fe8ef06c6db 100644 (file)
@@ -142,6 +142,8 @@ def two_phase_transactions(fn):
         no_support('oracle', 'no SA implementation'),
         no_support('sqlite', 'not supported by database'),
         no_support('sybase', 'FIXME: guessing, needs confirmation'),
+        no_support('postgresql+zxjdbc', "FIXME: JDBC driver confuses the transaction state, may "
+                   'need separate XA implementation'),
         exclude('mysql', '<', (5, 0, 3), 'not supported by database'),
         )