From e76f9d5b443845639262e18d9020ef4b070f1c7d Mon Sep 17 00:00:00 2001 From: Nick Pope Date: Fri, 28 May 2021 23:52:57 +0100 Subject: Refs #32943 -- Added support for covering SP-GiST indexes on PostgreSQL 14+. --- docs/ref/models/indexes.txt | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'docs/ref/models') 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 - `. + PostgreSQL 11+ only supports covering B-Tree indexes, PostgreSQL 12+ also + supports covering :class:`GiST indexes + `, and PostgreSQL 14+ also + supports covering :class:`SP-GiST indexes + `. + +.. 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 -- cgit v1.3