mirror of
https://github.com/django/django.git
synced 2025-08-03 02:23:12 +00:00
Refs #32943 -- Added support for covering exclusion constraints using SP-GiST indexes on PostgreSQL 14+.
This commit is contained in:
parent
e76f9d5b44
commit
c2f6c05c4c
4 changed files with 131 additions and 29 deletions
|
@ -115,7 +115,13 @@ used for queries that select only included fields
|
|||
(:attr:`~ExclusionConstraint.include`) and filter only by indexed fields
|
||||
(:attr:`~ExclusionConstraint.expressions`).
|
||||
|
||||
``include`` is supported only for GiST indexes on PostgreSQL 12+.
|
||||
``include`` is supported for GiST indexes on PostgreSQL 12+ and SP-GiST
|
||||
indexes on PostgreSQL 14+.
|
||||
|
||||
.. versionchanged:: 4.1
|
||||
|
||||
Support for covering exclusion constraints using SP-GiST indexes on
|
||||
PostgreSQL 14+ was added.
|
||||
|
||||
``opclasses``
|
||||
-------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue