]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
backport
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 19 Feb 2014 21:03:05 +0000 (16:03 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 19 Feb 2014 21:03:05 +0000 (16:03 -0500)
doc/build/changelog/changelog_08.rst
doc/build/changelog/changelog_09.rst

index c1fcdf36a04c0c591a23ec97b37ba7ebb379a0d8..b5c334b4ae9cbb33afa3ce33563886610eb7d2f6 100644 (file)
 .. 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
index f8a9c173e87dbcffa991c5bb4927e61fc716dbf0..52bc11cdc962ac7ece8379675ce0b3d0cbbe9e8c 100644 (file)
 .. 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