diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-02-15 23:39:39 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-02-15 23:39:39 +0000 |
commit | 029a6aaadd12e0126f33b2c80b30095109bbc989 (patch) | |
tree | c95fdbaf9326dd192b004984f590ca9c2c5c73a9 /test/dialect/test_postgresql.py | |
parent | 739b7b0c2551255a1d0e062112fe2dc7d792cc62 (diff) | |
download | sqlalchemy-029a6aaadd12e0126f33b2c80b30095109bbc989.tar.gz |
pg8000 doesn't seem to support this either
Diffstat (limited to 'test/dialect/test_postgresql.py')
-rw-r--r-- | test/dialect/test_postgresql.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py index b950836a9..2d05939fe 100644 --- a/test/dialect/test_postgresql.py +++ b/test/dialect/test_postgresql.py @@ -1027,7 +1027,10 @@ class MiscTest(TestBase, AssertsExecutionResults, AssertsCompiledSQL): finally: meta1.drop_all() - @testing.fails_on('+zxjdbc', "Can't infer the SQL type to use for an instance of org.python.core.PyObjectDerived.") + @testing.fails_on('+zxjdbc', "Can't infer the SQL type to use " + "for an instance of " + "org.python.core.PyObjectDerived.") + @testing.fails_on('+pg8000', "Can't determine correct type.") def test_extract(self): fivedaysago = datetime.datetime.now() - datetime.timedelta(days=5) for field, exp in ( |