diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2017-08-17 09:14:07 -0400 |
---|---|---|
committer | Gerrit Code Review <gerrit@awstats.zzzcomputing.com> | 2017-08-17 09:14:07 -0400 |
commit | d173662fe01fe4c952370ad52f34b03145ffa17a (patch) | |
tree | ecb706867575c40a56a88e1e64633c47e9773e0e /test | |
parent | eb8db2303b1677d49fc68a8ee299061e8cfc2b31 (diff) | |
parent | c86b95038d84b40617fccd485e4596da4b139f5a (diff) | |
download | sqlalchemy-d173662fe01fe4c952370ad52f34b03145ffa17a.tar.gz |
Merge "Enable uuid for pg8000"
Diffstat (limited to 'test')
-rw-r--r-- | test/dialect/postgresql/test_types.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/dialect/postgresql/test_types.py b/test/dialect/postgresql/test_types.py index b157070c5..efcf1f0e5 100644 --- a/test/dialect/postgresql/test_types.py +++ b/test/dialect/postgresql/test_types.py @@ -1701,7 +1701,6 @@ class UUIDTest(fixtures.TestBase): '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 self._test_round_trip( @@ -1716,7 +1715,6 @@ class UUIDTest(fixtures.TestBase): '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 self._test_round_trip( @@ -1730,7 +1728,7 @@ class UUIDTest(fixtures.TestBase): @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') + @testing.fails_on('postgresql+pg8000', 'No support for UUID with ARRAY') def test_uuid_array(self): import uuid self._test_round_trip( @@ -1745,7 +1743,7 @@ class UUIDTest(fixtures.TestBase): @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') + @testing.fails_on('postgresql+pg8000', 'No support for UUID with ARRAY') def test_uuid_string_array(self): import uuid self._test_round_trip( |