diff options
author | Philip Jenvey <pjenvey@underboss.org> | 2011-04-23 14:15:08 -0700 |
---|---|---|
committer | Philip Jenvey <pjenvey@underboss.org> | 2011-04-23 14:15:08 -0700 |
commit | 24e6c56da8cd38a203021639172da0f6fad87f3b (patch) | |
tree | f0be1fa9462e0fa12bd767ff939b75672250817d /test/dialect/test_postgresql.py | |
parent | 2a2cd333143656a76d3e2207519f2f7694065629 (diff) | |
download | sqlalchemy-24e6c56da8cd38a203021639172da0f6fad87f3b.tar.gz |
update warnings per zxjdbc
Diffstat (limited to 'test/dialect/test_postgresql.py')
-rw-r--r-- | test/dialect/test_postgresql.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py index 125b590f1..9d783eb41 100644 --- a/test/dialect/test_postgresql.py +++ b/test/dialect/test_postgresql.py @@ -282,6 +282,8 @@ class FloatCoercionTest(fixtures.TablesTest, AssertsExecutionResults): ).scalar() eq_(round_decimal(ret, 9), result) + @testing.fails_on('postgresql+zxjdbc', + 'zxjdbc has no support for PG arrays') @testing.provide_metadata def test_arrays(self): metadata = self.metadata @@ -1816,6 +1818,9 @@ class ArrayTest(fixtures.TestBase, AssertsExecutionResults): sess.add(foo) sess.flush() + @testing.fails_on('+zxjdbc', + "Can't infer the SQL type to use for an instance " + "of org.python.core.PyList.") @testing.provide_metadata def test_tuple_flag(self): metadata = self.metadata @@ -2064,6 +2069,8 @@ class UUIDTest(fixtures.TestBase): __only_on__ = 'postgresql' @testing.requires.python25 + @testing.fails_on('postgresql+zxjdbc', + 'column "data" is of type uuid but expression is of type character varying') @testing.fails_on('postgresql+pg8000', 'No support for UUID type') def test_uuid_string(self): import uuid @@ -2076,6 +2083,8 @@ class UUIDTest(fixtures.TestBase): ) @testing.requires.python25 + @testing.fails_on('postgresql+zxjdbc', + 'column "data" is of type uuid but expression is of type character varying') @testing.fails_on('postgresql+pg8000', 'No support for UUID type') def test_uuid_uuid(self): import uuid |