summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/build/changelog/changelog_08.rst9
-rw-r--r--doc/build/changelog/changelog_09.rst8
-rw-r--r--lib/sqlalchemy/engine/reflection.py2
3 files changed, 10 insertions, 9 deletions
diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst
index 96f087224..a6583bcc2 100644
--- a/doc/build/changelog/changelog_08.rst
+++ b/doc/build/changelog/changelog_08.rst
@@ -11,6 +11,15 @@
.. changelog::
:version: 0.8.4
+ .. change::
+ :tags: feature, sql
+ :tickets: 1443
+ :versions: 0.9.0b1
+
+ Added support for "unique constraint" reflection, via the
+ :meth:`.Inspector.get_unique_constraints` method.
+ Thanks for Roman Podolyaka for the patch.
+
.. change::
:tags: bug, oracle
:tickets: 2864
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst
index 367fa1df9..370692528 100644
--- a/doc/build/changelog/changelog_09.rst
+++ b/doc/build/changelog/changelog_09.rst
@@ -657,14 +657,6 @@
equality expression with a bound parameter.
.. change::
- :tags: feature, sql
- :tickets: 1443
-
- Added support for "unique constraint" reflection, via the
- :meth:`.Inspector.get_unique_constraints` method.
- Thanks for Roman Podolyaka for the patch.
-
- .. change::
:tags: feature, pool
:tickets: 2752
diff --git a/lib/sqlalchemy/engine/reflection.py b/lib/sqlalchemy/engine/reflection.py
index 4a884453b..4380ee32e 100644
--- a/lib/sqlalchemy/engine/reflection.py
+++ b/lib/sqlalchemy/engine/reflection.py
@@ -401,7 +401,7 @@ class Inspector(object):
of the database connection. For special quoting,
use :class:`.quoted_name`.
- .. versionadded:: 0.9.0
+ .. versionadded:: 0.8.4
"""