From 033463cd4bd93739e0642ed9ef440a0c9d3374fe Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 19 Feb 2014 16:03:05 -0500 Subject: [PATCH] backport --- doc/build/changelog/changelog_08.rst | 16 ++++++++++++++++ doc/build/changelog/changelog_09.rst | 14 -------------- 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index c1fcdf36a0..b5c334b4ae 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -11,6 +11,22 @@ .. changelog:: :version: 0.8.5 + .. change:: + :tags: postgresql, bug + :versions: 0.9.3 + + Support has been improved for Postgresql reflection behavior on very old + (pre 8.1) versions of Postgresql, and potentially other PG engines + such as Redshift (assuming Redshift reports the version as < 8.1). + The query for "indexes" as well as "primary keys" relies upon inspecting + a so-called "int2vector" datatype, which refuses to coerce to an array + prior to 8.1 causing failures regarding the "ANY()" operator used + in the query. Extensive googling has located the very hacky, but + recommended-by-PG-core-developer query to use when PG version < 8.1 + is in use, so index and primary key constraint reflection now work + on these versions. + + .. change:: :tags: feature, mysql :versions: 0.9.3 diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst index f8a9c173e8..52bc11cdc9 100644 --- a/doc/build/changelog/changelog_09.rst +++ b/doc/build/changelog/changelog_09.rst @@ -14,20 +14,6 @@ .. changelog:: :version: 0.9.3 - .. change:: - :tags: postgresql, bug - - Support has been improved for Postgresql reflection behavior on very old - (pre 8.1) versions of Postgresql, and potentially other PG engines - such as Redshift (assuming Redshift reports the version as < 8.1). - The query for "indexes" as well as "primary keys" relies upon inspecting - a so-called "int2vector" datatype, which refuses to coerce to an array - prior to 8.1 causing failures regarding the "ANY()" operator used - in the query. Extensive googling has located the very hacky, but - recommended-by-PG-core-developer query to use when PG version < 8.1 - is in use, so index and primary key constraint reflection now work - on these versions. - .. change:: :tags: sqlite, bug -- 2.47.3