diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-12-03 15:01:34 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-12-03 15:01:34 -0500 |
commit | bddf55fef6d62b180042f367eb0ad73166d5bf00 (patch) | |
tree | cdc39c562121de82f4e61c4c5824398ce46ef0a2 | |
parent | 36e1aa0afdf7e42f88426da4b2e9ee631d16728c (diff) | |
download | sqlalchemy-bddf55fef6d62b180042f367eb0ad73166d5bf00.tar.gz |
- reflection of unique constraints backported to 0.8.4 [ticket:1443]
-rw-r--r-- | doc/build/changelog/changelog_08.rst | 9 | ||||
-rw-r--r-- | doc/build/changelog/changelog_09.rst | 8 | ||||
-rw-r--r-- | lib/sqlalchemy/engine/reflection.py | 2 |
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 """ |