Skip to content

Commit dbd94e7

Browse files
Hesham942sarahboyce
authored andcommitted
[5.1.x] Fixed #36227 -- Fixed outdated PostgreSQL documentation links.
Backport of 3ecaa85 from main.
1 parent cc405e1 commit dbd94e7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/ref/contrib/postgres/indexes.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ available from the ``django.contrib.postgres.indexes`` module.
6262
The ``deduplicate_items`` parameter was added.
6363

6464
.. _fillfactor: https://www.postgresql.org/docs/current/sql-createindex.html#SQL-CREATEINDEX-STORAGE-PARAMETERS
65-
.. _deduplicate_items: https://www.postgresql.org/docs/current/btree-implementation.html#BTREE-DEDUPLICATION
65+
.. _deduplicate_items: https://www.postgresql.org/docs/current/btree.html#BTREE-DEDUPLICATION
6666

6767
``GinIndex``
6868
============
@@ -72,7 +72,7 @@ available from the ``django.contrib.postgres.indexes`` module.
7272
Creates a `gin index <https://www.postgresql.org/docs/current/gin.html>`_.
7373

7474
To use this index on data types not in the `built-in operator classes
75-
<https://www.postgresql.org/docs/current/gin-builtin-opclasses.html>`_,
75+
<https://www.postgresql.org/docs/current/gin.html#GIN-BUILTIN-OPCLASSES>`_,
7676
you need to activate the `btree_gin extension
7777
<https://www.postgresql.org/docs/current/btree-gin.html>`_ on
7878
PostgreSQL. You can install it using the
@@ -86,7 +86,7 @@ available from the ``django.contrib.postgres.indexes`` module.
8686
parameter to tune the maximum size of the GIN pending list which is used
8787
when ``fastupdate`` is enabled.
8888

89-
.. _GIN Fast Update Technique: https://www.postgresql.org/docs/current/gin-implementation.html#GIN-FAST-UPDATE
89+
.. _GIN Fast Update Technique: https://www.postgresql.org/docs/current/gin.html#GIN-FAST-UPDATE
9090
.. _gin_pending_list_limit: https://www.postgresql.org/docs/current/runtime-config-client.html#GUC-GIN-PENDING-LIST-LIMIT
9191

9292
``GistIndex``
@@ -103,7 +103,7 @@ available from the ``django.contrib.postgres.indexes`` module.
103103
fields <range-fields>`.
104104

105105
To use this index on data types not in the built-in `gist operator classes
106-
<https://www.postgresql.org/docs/current/gist-builtin-opclasses.html>`_,
106+
<https://www.postgresql.org/docs/current/gist.html#GIST-BUILTIN-OPCLASSES>`_,
107107
you need to activate the `btree_gist extension
108108
<https://www.postgresql.org/docs/current/btree-gist.html>`_ on PostgreSQL.
109109
You can install it using the
@@ -116,7 +116,7 @@ available from the ``django.contrib.postgres.indexes`` module.
116116
Provide an integer value from 10 to 100 to the fillfactor_ parameter to
117117
tune how packed the index pages will be. PostgreSQL's default is 90.
118118

119-
.. _buffering build: https://www.postgresql.org/docs/current/gist-implementation.html#GIST-BUFFERING-BUILD
119+
.. _buffering build: https://www.postgresql.org/docs/current/gist.html#GIST-BUFFERING-BUILD
120120
.. _fillfactor: https://www.postgresql.org/docs/current/sql-createindex.html#SQL-CREATEINDEX-STORAGE-PARAMETERS
121121

122122
``HashIndex``

0 commit comments

Comments
 (0)