From: Mike Bayer Date: Thu, 11 Mar 2010 18:39:15 +0000 (+0000) Subject: these fail for unknown reasons. Seems to be potentially VARCHAR used with RETURNING... X-Git-Tag: rel_0_6beta2~57^2~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ee8eea4101d4e12aa7db84c9a6a289cd6f9e3107;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git these fail for unknown reasons. Seems to be potentially VARCHAR used with RETURNING, or out params, not sure. --- diff --git a/test/sql/test_returning.py b/test/sql/test_returning.py index 481eba8253..bd0755b9d9 100644 --- a/test/sql/test_returning.py +++ b/test/sql/test_returning.py @@ -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):