From: Philip Jenvey Date: Sun, 19 Jul 2009 02:52:40 +0000 (+0000) Subject: skip interval test_roundtrip on zxjdbc for now X-Git-Tag: rel_0_6_6~109 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e7bc0396c19880877c6f04505ef94f56327ad29;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git skip interval test_roundtrip on zxjdbc for now --- diff --git a/test/sql/test_types.py b/test/sql/test_types.py index c003efc355..bac6eb5094 100644 --- a/test/sql/test_types.py +++ b/test/sql/test_types.py @@ -714,6 +714,7 @@ class IntervalTest(TestBase, AssertsExecutionResults): metadata.drop_all() @testing.fails_on("+pg8000", "Not yet known how to pass values of the INTERVAL type") + @testing.fails_on("+zxjdbc", "Not yet known how to pass values of the INTERVAL type") def test_roundtrip(self): delta = datetime.datetime(2006, 10, 5) - datetime.datetime(2005, 8, 17) interval_table.insert().execute(interval=delta)