diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-01-06 08:09:58 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-01-17 11:49:15 +0100 |
| commit | 490cccbe7e83874923b276eed26cc23b0db5ebb9 (patch) | |
| tree | 12faeff64b1a0f973a9ce3535a0e8635a9dab074 /docs/ref/contrib/postgres | |
| parent | ea92a4dc2879e084b46d9b141c0a535d536be2e6 (diff) | |
Removed versionadded/changed annotations for 4.1.
Diffstat (limited to 'docs/ref/contrib/postgres')
| -rw-r--r-- | docs/ref/contrib/postgres/aggregates.txt | 2 | ||||
| -rw-r--r-- | docs/ref/contrib/postgres/constraints.txt | 16 | ||||
| -rw-r--r-- | docs/ref/contrib/postgres/fields.txt | 4 | ||||
| -rw-r--r-- | docs/ref/contrib/postgres/indexes.txt | 8 |
4 files changed, 0 insertions, 30 deletions
diff --git a/docs/ref/contrib/postgres/aggregates.txt b/docs/ref/contrib/postgres/aggregates.txt index 55ec952fa2..79cfa8432b 100644 --- a/docs/ref/contrib/postgres/aggregates.txt +++ b/docs/ref/contrib/postgres/aggregates.txt @@ -78,8 +78,6 @@ General-purpose aggregation functions ``BitXor`` ---------- -.. versionadded:: 4.1 - .. class:: BitXor(expression, filter=None, default=None, **extra) Returns an ``int`` of the bitwise ``XOR`` of all non-null input values, or diff --git a/docs/ref/contrib/postgres/constraints.txt b/docs/ref/contrib/postgres/constraints.txt index b8a744f2b4..5c50ddd3a5 100644 --- a/docs/ref/contrib/postgres/constraints.txt +++ b/docs/ref/contrib/postgres/constraints.txt @@ -30,11 +30,6 @@ PostgreSQL supports additional data integrity constraints available from the Exclusion constraints are checked during the :ref:`model validation <validating-objects>`. - .. versionchanged:: 4.1 - - In older versions, exclusion constraints were not checked during model - validation. - ``name`` -------- @@ -71,10 +66,6 @@ For example:: creates an exclusion constraint on ``circle`` using ``circle_ops``. -.. versionchanged:: 4.1 - - Support for the ``OpClass()`` expression was added. - .. _operator class: https://www.postgresql.org/docs/current/indexes-opclass.html ``index_type`` @@ -142,11 +133,6 @@ used for queries that select only included fields ``include`` is supported for GiST indexes. PostgreSQL 14+ also supports ``include`` for SP-GiST indexes. -.. versionchanged:: 4.1 - - Support for covering exclusion constraints using SP-GiST indexes on - PostgreSQL 14+ was added. - ``opclasses`` ------------- @@ -176,8 +162,6 @@ creates an exclusion constraint on ``circle`` using ``circle_ops``. ``violation_error_message`` --------------------------- -.. versionadded:: 4.1 - The error message used when ``ValidationError`` is raised during :ref:`model validation <validating-objects>`. Defaults to :attr:`.BaseConstraint.violation_error_message`. diff --git a/docs/ref/contrib/postgres/fields.txt b/docs/ref/contrib/postgres/fields.txt index 34ad06a09a..f63bde45bb 100644 --- a/docs/ref/contrib/postgres/fields.txt +++ b/docs/ref/contrib/postgres/fields.txt @@ -586,8 +586,6 @@ the ``default_bounds`` argument. .. attribute:: DecimalRangeField.default_bounds - .. versionadded:: 4.1 - Optional. The value of ``bounds`` for list and tuple inputs. The default is lower bound included, upper bound excluded, that is ``[)`` (see the PostgreSQL documentation for details about @@ -606,8 +604,6 @@ the ``default_bounds`` argument. .. attribute:: DateTimeRangeField.default_bounds - .. versionadded:: 4.1 - Optional. The value of ``bounds`` for list and tuple inputs. The default is lower bound included, upper bound excluded, that is ``[)`` (see the PostgreSQL documentation for details about diff --git a/docs/ref/contrib/postgres/indexes.txt b/docs/ref/contrib/postgres/indexes.txt index 4eb38e71d5..d428975c1a 100644 --- a/docs/ref/contrib/postgres/indexes.txt +++ b/docs/ref/contrib/postgres/indexes.txt @@ -133,10 +133,6 @@ 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 @@ -178,8 +174,4 @@ available from the ``django.contrib.postgres.indexes`` module. creates an exclusion constraint on ``circle`` using ``circle_ops``. - .. versionchanged:: 4.1 - - Support for exclusion constraints was added. - .. _operator class: https://www.postgresql.org/docs/current/indexes-opclass.html |
