summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-06-19 14:10:47 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2015-06-19 14:10:47 -0400
commite625d2ea88f4ae3e0a667b3d2a904dafbd0421b9 (patch)
tree20d026818f04242d86e60f11d262f6016048ad0e /doc
parent99ceed3e55e87c7aca9898359e68c90ecee7965c (diff)
downloadsqlalchemy-e625d2ea88f4ae3e0a667b3d2a904dafbd0421b9.tar.gz
- for #3455
- changelog - versionadded + reflink for new pg storage parameters doc - pep8ing - add additional tests to definitely check that the Index object is created all the way with the opts we want fixes #3455
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_10.rst17
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_10.rst b/doc/build/changelog/changelog_10.rst
index a02a13ef9..efb518716 100644
--- a/doc/build/changelog/changelog_10.rst
+++ b/doc/build/changelog/changelog_10.rst
@@ -19,6 +19,23 @@
:version: 1.0.6
.. change::
+ :tags: feature, postgresql
+ :tickets: 3455
+ :pullreq: github:179
+
+ Added support for storage parameters under CREATE INDEX, using
+ a new keyword argument ``postgresql_with``. Also added support for
+ reflection to support both the ``postgresql_with`` flag as well
+ as the ``postgresql_using`` flag, which will now be set on
+ :class:`.Index` objects that are reflected, as well present
+ in a new "dialect_options" dictionary in the result of
+ :meth:`.Inspector.get_indexes`. Pull request courtesy Pete Hollobon.
+
+ .. seealso::
+
+ :ref:`postgresql_index_storage`
+
+ .. change::
:tags: bug, orm
:tickets: 3462