summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorbeenje <beenje@gmail.org>2016-04-11 23:15:35 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2016-06-01 17:20:41 -0400
commitef0da7eb66d173a487adbee96311bf4996da0556 (patch)
treeba87f3817e332b17a9bf958b602bc99a867afe42 /doc
parenta8e7bb8782ca8fd858ac036082104b4ac2991cfc (diff)
downloadsqlalchemy-ef0da7eb66d173a487adbee96311bf4996da0556.tar.gz
Add postgresql_tablespace option on Index
This complements the same-named parameter available on Table. Fixes: #3720 Change-Id: I56e081e2a551f37c3f392ca4b301c9ef82b94e59 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/233
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_11.rst9
-rw-r--r--doc/build/changelog/migration_11.rst13
2 files changed, 22 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_11.rst b/doc/build/changelog/changelog_11.rst
index f86a0f1dc..898b8a0ba 100644
--- a/doc/build/changelog/changelog_11.rst
+++ b/doc/build/changelog/changelog_11.rst
@@ -22,6 +22,15 @@
:version: 1.1.0b1
.. change::
+ :tags: feature, postgresql
+ :tickets: 3720
+
+ Added ``postgresql_tablespace`` as an argument to :class:`.Index`
+ to allow specification of TABLESPACE for an index in Postgresql.
+ Complements the same-named parameter on :class:`.Table`. Pull
+ request courtesy Benjamin Bertrand.
+
+ .. change::
:tags: bug, mssql
:pullreq: bitbucket:58
diff --git a/doc/build/changelog/migration_11.rst b/doc/build/changelog/migration_11.rst
index b32183a6e..0d94f35e9 100644
--- a/doc/build/changelog/migration_11.rst
+++ b/doc/build/changelog/migration_11.rst
@@ -2041,6 +2041,19 @@ both within the method :meth:`.Inspector.get_check_constraints` as well
as within :class:`.Table` reflection within the :attr:`.Table.constraints`
collection.
+Added tablespace option to Index
+--------------------------------
+
+The :class:`.Index` object now accepts the argument ``postgresql_tablespace``
+in order to specify TABLESPACE, the same way as accepted by the
+:class:`.Table` object.
+
+.. seealso::
+
+ :ref:`postgresql_index_storage`
+
+:ticket:`3720`
+
Support for PyGreSQL
--------------------