summaryrefslogtreecommitdiff
path: root/test/dialect/postgresql/test_reflection.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-04-01 16:50:32 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2015-04-01 16:50:32 -0400
commit4b164935481c44c126500761f873c5b0c5bdbe80 (patch)
tree6ede09bfddf57399f491ae2d9176785a4d70acbc /test/dialect/postgresql/test_reflection.py
parent5ed49f38c372360dbbe5c9e0c0e8fc502d034c0c (diff)
downloadsqlalchemy-4b164935481c44c126500761f873c5b0c5bdbe80.tar.gz
- Fixed bug where updated PG index reflection as a result of
:ticket:`3184` would cause index operations to fail on Postgresql versions 8.4 and earlier. The enhancements are now disabled when using an older version of Postgresql. fixes #3343
Diffstat (limited to 'test/dialect/postgresql/test_reflection.py')
-rw-r--r--test/dialect/postgresql/test_reflection.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/dialect/postgresql/test_reflection.py b/test/dialect/postgresql/test_reflection.py
index 0dda1fa45..0ebe68cba 100644
--- a/test/dialect/postgresql/test_reflection.py
+++ b/test/dialect/postgresql/test_reflection.py
@@ -817,6 +817,7 @@ class ReflectionTest(fixtures.TestBase):
}])
@testing.provide_metadata
+ @testing.only_on("postgresql>=8.5")
def test_reflection_with_unique_constraint(self):
insp = inspect(testing.db)