]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- reflection of unique constraints backported to 0.8.4 [ticket:1443]
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 3 Dec 2013 20:01:34 +0000 (15:01 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 3 Dec 2013 20:01:34 +0000 (15:01 -0500)
doc/build/changelog/changelog_08.rst
doc/build/changelog/changelog_09.rst
lib/sqlalchemy/engine/reflection.py

index 96f087224933d60c82455bfa5a0b79868037d337..a6583bcc2a36b128f59021926c933eaa472d8afe 100644 (file)
 .. 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
index 367fa1df9b43299fbae21c93ae5ab2169b1282ab..370692528b656f6e70adfe06d02abbe9d997e9c6 100644 (file)
         about producing an ``IS`` expression, or a plain
         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
index 4a884453bb1698ab47e1b7949ee7fd2e9d184bf4..4380ee32ef1d6823846bc01741c17c699caba514 100644 (file)
@@ -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
 
         """