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/ref/contrib/postgres | |
parent | bd47b9bc816bf213b6d0027ed9a9a44955bb7694 (diff) | |
download | django-e76f9d5b443845639262e18d9020ef4b070f1c7d.tar.gz |
Refs #32943 -- Added support for covering SP-GiST indexes on PostgreSQL 14+.
Diffstat (limited to 'docs/ref/contrib/postgres')
-rw-r--r-- | docs/ref/contrib/postgres/indexes.txt | 4 |
1 files changed, 4 insertions, 0 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 |