diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-07-24 12:24:18 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-07-24 12:24:18 -0400 |
commit | 9e092e339463e6c6e02cf85266ca49ab1c32832f (patch) | |
tree | 28ab48e3d5de7c9c76445c8c7a2aad5e83a591b2 /test/dialect/postgresql/test_reflection.py | |
parent | 552f1f135f66a1a3b9a1a8c3d5e1e6431e4fd234 (diff) | |
download | sqlalchemy-9e092e339463e6c6e02cf85266ca49ab1c32832f.tar.gz |
- An adjustment to the new Postgresql feature of reflecting storage
options and USING of :ticket:`3455` released in 1.0.6,
to disable the feature for Postgresql versions < 8.2 where the
``reloptions`` column is not provided; this allows Amazon Redshift
to again work as it is based on an 8.0.x version of Postgresql.
Fix courtesy Pete Hollobon.
references #3455
Diffstat (limited to 'test/dialect/postgresql/test_reflection.py')
-rw-r--r-- | test/dialect/postgresql/test_reflection.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/dialect/postgresql/test_reflection.py b/test/dialect/postgresql/test_reflection.py index 0354fa436..ee87e7325 100644 --- a/test/dialect/postgresql/test_reflection.py +++ b/test/dialect/postgresql/test_reflection.py @@ -673,6 +673,7 @@ class ReflectionTest(fixtures.TestBase): eq_(ind, [{'unique': False, 'column_names': ['y'], 'name': 'idx1'}]) conn.close() + @testing.fails_if("postgresql < 8.2", "reloptions not supported") @testing.provide_metadata def test_index_reflection_with_storage_options(self): """reflect indexes with storage options set""" |