From: Mike Bayer Date: Tue, 3 Dec 2013 20:01:34 +0000 (-0500) Subject: - reflection of unique constraints backported to 0.8.4 [ticket:1443] X-Git-Tag: rel_0_9_0~57 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bddf55fef6d62b180042f367eb0ad73166d5bf00;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - reflection of unique constraints backported to 0.8.4 [ticket:1443] --- diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index 96f0872249..a6583bcc2a 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 367fa1df9b..370692528b 100644 --- a/doc/build/changelog/changelog_09.rst +++ b/doc/build/changelog/changelog_09.rst @@ -656,14 +656,6 @@ 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 diff --git a/lib/sqlalchemy/engine/reflection.py b/lib/sqlalchemy/engine/reflection.py index 4a884453bb..4380ee32ef 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 """