summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-02-19 16:03:05 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2014-02-19 16:03:05 -0500
commit033463cd4bd93739e0642ed9ef440a0c9d3374fe (patch)
tree6f72d75ee159057c061f508a942dbc85b1214a2e
parenta552606091bf84579751cd80ca458a0483b2b96a (diff)
downloadsqlalchemy-033463cd4bd93739e0642ed9ef440a0c9d3374fe.tar.gz
backport
-rw-r--r--doc/build/changelog/changelog_08.rst16
-rw-r--r--doc/build/changelog/changelog_09.rst14
2 files changed, 16 insertions, 14 deletions
diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst
index c1fcdf36a..b5c334b4a 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 f8a9c173e..52bc11cdc 100644
--- a/doc/build/changelog/changelog_09.rst
+++ b/doc/build/changelog/changelog_09.rst
@@ -15,20 +15,6 @@
: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
The SQLite dialect will now skip unsupported arguments when reflecting