summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorHaki Benita <hakibenita@gmail.com>2025-12-25 11:42:58 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2026-01-10 08:12:05 +0100
commitd61838761f17d7c934c7be288fadfa14f471b598 (patch)
tree9a3bdb1288beafee649f5b154188bb6d7e458ce8 /docs/ref
parent8a0315fab74d603813b2a64ab98d5a208a2eb6d1 (diff)
Fixed #36827 -- Added support for exclusion constraints using Hash indexes on PostgreSQL.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/contrib/postgres/constraints.txt10
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/ref/contrib/postgres/constraints.txt b/docs/ref/contrib/postgres/constraints.txt
index ee8ef02aa2..29083c0b6b 100644
--- a/docs/ref/contrib/postgres/constraints.txt
+++ b/docs/ref/contrib/postgres/constraints.txt
@@ -73,9 +73,13 @@ creates an exclusion constraint on ``circle`` using ``circle_ops``.
.. attribute:: ExclusionConstraint.index_type
-The index type of the constraint. Accepted values are ``GIST`` or ``SPGIST``.
-Matching is case insensitive. If not provided, the default index type is
-``GIST``.
+The index type of the constraint. Accepted values are ``GiST``, ``Hash``, or
+``SPGiST``. Matching is case insensitive. If not provided, the default index
+type is ``GIST``.
+
+.. versionchanged:: 6.1
+
+ Support for exclusion constraints using Hash indexes was added.
``condition``
-------------