From 981c23c0ccbcaa155a80f894fd9e832beaab661d Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Thu, 19 May 2022 09:26:48 +0200 Subject: Fixed #33717 -- Dropped support for PostgreSQL 11. --- docs/ref/contrib/postgres/constraints.txt | 4 ++-- docs/ref/contrib/postgres/fields.txt | 4 ++-- docs/ref/contrib/postgres/operations.txt | 4 ---- 3 files changed, 4 insertions(+), 8 deletions(-) (limited to 'docs/ref/contrib/postgres') diff --git a/docs/ref/contrib/postgres/constraints.txt b/docs/ref/contrib/postgres/constraints.txt index 26c6356693..44f1f56db1 100644 --- a/docs/ref/contrib/postgres/constraints.txt +++ b/docs/ref/contrib/postgres/constraints.txt @@ -139,8 +139,8 @@ used for queries that select only included fields (:attr:`~ExclusionConstraint.include`) and filter only by indexed fields (:attr:`~ExclusionConstraint.expressions`). -``include`` is supported for GiST indexes on PostgreSQL 12+ and SP-GiST -indexes on PostgreSQL 14+. +``include`` is supported for GiST indexes. PostgreSQL 14+ also supports +``include`` for SP-GiST indexes. .. versionchanged:: 4.1 diff --git a/docs/ref/contrib/postgres/fields.txt b/docs/ref/contrib/postgres/fields.txt index fe4b3856ab..d460cecc70 100644 --- a/docs/ref/contrib/postgres/fields.txt +++ b/docs/ref/contrib/postgres/fields.txt @@ -287,8 +287,8 @@ transform do not change. For example:: .. admonition:: Case-insensitive collations - On PostgreSQL 12+, it's preferable to use non-deterministic collations - instead of the ``citext`` extension. You can create them using the + It's preferable to use non-deterministic collations instead of the + ``citext`` extension. You can create them using the :class:`~django.contrib.postgres.operations.CreateCollation` migration operation. For more details, see :ref:`manage-postgresql-collations` and the PostgreSQL documentation about `non-deterministic collations`_. diff --git a/docs/ref/contrib/postgres/operations.txt b/docs/ref/contrib/postgres/operations.txt index 46ba3300ae..d5b8a9e0d6 100644 --- a/docs/ref/contrib/postgres/operations.txt +++ b/docs/ref/contrib/postgres/operations.txt @@ -151,10 +151,6 @@ For example, to create a collation for German phone book ordering:: ``provider``, and ``deterministic`` arguments. Therefore, ``locale`` is required to make this operation reversible. -.. admonition:: Restrictions - - Non-deterministic collations are supported only on PostgreSQL 12+. - Concurrent index operations =========================== -- cgit v1.3