summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2021-05-03 20:14:03 +0200
committerPeter Eisentraut <peter@eisentraut.org>2021-05-03 20:14:03 +0200
commit5df6aeab42279eaea8e9ff92744645b155c85b03 (patch)
treefdabd923e4bcaf033d4b6dadc8ff0fe9d3a628e9
parent50529e5b4e39ad80a637ba0905277f9691eb4a15 (diff)
doc: Add index entry for "multirange type"
Before now, looking up "multirange" in the index only led to the multirange() function. To make this more useful, also add an entry pointing to the range types section.
-rw-r--r--doc/src/sgml/func.sgml2
-rw-r--r--doc/src/sgml/rangetypes.sgml4
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index b9b25e03a23..5ae8abff0ce 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -19206,7 +19206,7 @@ SELECT NULLIF(value, '(none)') ...
<row>
<entry role="func_table_entry"><para role="func_signature">
<indexterm>
- <primary>multirange</primary>
+ <primary>multirange (function)</primary>
</indexterm>
<function>multirange</function> ( <type>anyrange</type> )
<returnvalue>anymultirange</returnvalue>
diff --git a/doc/src/sgml/rangetypes.sgml b/doc/src/sgml/rangetypes.sgml
index 91e353d4fdb..92ea0e83dab 100644
--- a/doc/src/sgml/rangetypes.sgml
+++ b/doc/src/sgml/rangetypes.sgml
@@ -7,6 +7,10 @@
<primary>range type</primary>
</indexterm>
+ <indexterm>
+ <primary>multirange type</primary>
+ </indexterm>
+
<para>
Range types are data types representing a range of values of some
element type (called the range's <firstterm>subtype</firstterm>).