diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-03-25 12:26:42 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-03-25 12:26:42 -0400 |
commit | 1a35188b6903a48999ebbd1aeeec0114d3cbe7d3 (patch) | |
tree | ef9126531e924eed5843d10ee1b461951c29d5b1 /test/dialect/postgresql/test_reflection.py | |
parent | 74f7509d663641547054146a986a9634f9198857 (diff) | |
download | sqlalchemy-1a35188b6903a48999ebbd1aeeec0114d3cbe7d3.tar.gz |
- Fixed regression caused by release 0.8.5 / 0.9.3's compatibility
enhancements where index reflection on Postgresql versions specific
to only the 8.1, 8.2 series again
broke, surrounding the ever problematic int2vector type. While
int2vector supports array operations as of 8.1, apparently it only
supports CAST to a varchar as of 8.3.
fix #3000
Diffstat (limited to 'test/dialect/postgresql/test_reflection.py')
-rw-r--r-- | test/dialect/postgresql/test_reflection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/postgresql/test_reflection.py b/test/dialect/postgresql/test_reflection.py index aefb6a0ba..01e14ffa0 100644 --- a/test/dialect/postgresql/test_reflection.py +++ b/test/dialect/postgresql/test_reflection.py @@ -20,7 +20,7 @@ class DomainReflectionTest(fixtures.TestBase, AssertsExecutionResults): """Test PostgreSQL domains""" - __only_on__ = 'postgresql > 8.2' + __only_on__ = 'postgresql > 8.3' @classmethod def setup_class(cls): |