diff options
| author | Nick Pope <nick@nickpope.me.uk> | 2021-05-28 23:52:57 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-10-01 13:11:34 +0200 |
| commit | e76f9d5b443845639262e18d9020ef4b070f1c7d (patch) | |
| tree | 1119213b5e3143318040026770efc649c1fd260d /docs | |
| parent | bd47b9bc816bf213b6d0027ed9a9a44955bb7694 (diff) | |
Refs #32943 -- Added support for covering SP-GiST indexes on PostgreSQL 14+.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/postgres/indexes.txt | 4 | ||||
| -rw-r--r-- | docs/ref/models/indexes.txt | 12 | ||||
| -rw-r--r-- | docs/releases/4.1.txt | 3 | ||||
| -rw-r--r-- | docs/spelling_wordlist | 1 |
4 files changed, 17 insertions, 3 deletions
diff --git a/docs/ref/contrib/postgres/indexes.txt b/docs/ref/contrib/postgres/indexes.txt index de1715c239..35de2bf31a 100644 --- a/docs/ref/contrib/postgres/indexes.txt +++ b/docs/ref/contrib/postgres/indexes.txt @@ -138,6 +138,10 @@ available from the ``django.contrib.postgres.indexes`` module. Provide an integer value from 10 to 100 to the fillfactor_ parameter to tune how packed the index pages will be. PostgreSQL's default is 90. + .. versionchanged:: 4.1 + + Support for covering SP-GiST indexes on PostgreSQL 14+ was added. + .. _fillfactor: https://www.postgresql.org/docs/current/sql-createindex.html#SQL-CREATEINDEX-STORAGE-PARAMETERS ``OpClass()`` expressions diff --git a/docs/ref/models/indexes.txt b/docs/ref/models/indexes.txt index 77739aab65..2992d51d2a 100644 --- a/docs/ref/models/indexes.txt +++ b/docs/ref/models/indexes.txt @@ -210,8 +210,14 @@ See the PostgreSQL documentation for more details about `covering indexes`_. .. admonition:: Restrictions on PostgreSQL - PostgreSQL 11+ only supports covering B-Tree indexes, and PostgreSQL 12+ - also supports covering :class:`GiST indexes - <django.contrib.postgres.indexes.GistIndex>`. + PostgreSQL 11+ only supports covering B-Tree indexes, PostgreSQL 12+ also + supports covering :class:`GiST indexes + <django.contrib.postgres.indexes.GistIndex>`, and PostgreSQL 14+ also + supports covering :class:`SP-GiST indexes + <django.contrib.postgres.indexes.SpGistIndex>`. + +.. versionchanged:: 4.1 + + Support for covering SP-GiST indexes with PostgreSQL 14+ was added. .. _covering indexes: https://www.postgresql.org/docs/current/indexes-index-only-scans.html diff --git a/docs/releases/4.1.txt b/docs/releases/4.1.txt index e089ea6cf9..da805df315 100644 --- a/docs/releases/4.1.txt +++ b/docs/releases/4.1.txt @@ -68,6 +68,9 @@ Minor features aggregate function returns an ``int`` of the bitwise ``XOR`` of all non-null input values. +* :class:`~django.contrib.postgres.indexes.SpGistIndex` now supports covering + indexes on PostgreSQL 14+. + :mod:`django.contrib.redirects` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/docs/spelling_wordlist b/docs/spelling_wordlist index 8d9b17a43d..af9b8ca56b 100644 --- a/docs/spelling_wordlist +++ b/docs/spelling_wordlist @@ -196,6 +196,7 @@ geospatial Gettext GiB gis +GiST Googol Greenhill gunicorn |
