From 4b164935481c44c126500761f873c5b0c5bdbe80 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 1 Apr 2015 16:50:32 -0400 Subject: - 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 --- test/dialect/postgresql/test_reflection.py | 1 + 1 file changed, 1 insertion(+) (limited to 'test/dialect/postgresql') 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) -- cgit v1.2.1