]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
these fail for unknown reasons. Seems to be potentially VARCHAR used with RETURNING...
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 11 Mar 2010 18:39:15 +0000 (18:39 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 11 Mar 2010 18:39:15 +0000 (18:39 +0000)
test/sql/test_returning.py

index 481eba8253acbf7a4cdd22c50b1105722778ba51..bd0755b9d922d21e2647b48b4a6bd11b393b189d 100644 (file)
@@ -49,7 +49,11 @@ class ReturningTest(TestBase, AssertsExecutionResults):
         row = result.first()
         assert row[table.c.persons] == row['persons'] == 5
         assert row[table.c.full] == row['full'] == True
-        assert row[table.c.goofy] == row['goofy'] == "FOOsomegoofyBAR"
+
+        @testing.fails_on('oracle+cx_oracle', 'unknown DBAPI issue')
+        def test():
+            assert row[table.c.goofy] == row['goofy'] == "FOOsomegoofyBAR"
+        test()
     
     @testing.fails_on('firebird', "fb can't handle returning x AS y")
     @testing.exclude('firebird', '<', (2, 0), '2.0+ feature')
@@ -62,6 +66,7 @@ class ReturningTest(TestBase, AssertsExecutionResults):
 
     @testing.fails_on('firebird', "fb/kintersbasdb can't handle the bind params")
     @testing.fails_on('oracle+zxjdbc', "JDBC driver bug")
+    @testing.fails_on('oracle+cx_oracle', "unknown DBAPI issue")
     @testing.exclude('firebird', '<', (2, 0), '2.0+ feature')
     @testing.exclude('postgresql', '<', (8, 2), '8.2+ feature')
     def test_anon_expressions(self):