summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian2023-11-25 03:02:07 +0000
committerBruce Momjian2023-11-25 03:02:07 +0000
commit9890a855ae82d2185c6dcd98f0071a0c889cacc3 (patch)
tree8c5da4779838ba413fc11ed8ed214f417ca28649
parent712dc2338b23196edd94619f43f24d23139cc0a9 (diff)
doc: gin_page_opaque_info() must be a _compressed_ GIN page
Reported-by: Jeff Janes Discussion: https://postgr.es/m/CAMkU=1xvzQxTAiYNM2PWJ6snMTPh3u3Ammbwss7mvAShS2Ohww@mail.gmail.com Author: Jeff Janes Backpatch-through: master
-rw-r--r--doc/src/sgml/pageinspect.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/pageinspect.sgml b/doc/src/sgml/pageinspect.sgml
index 0f278662af5..27e0598f74c 100644
--- a/doc/src/sgml/pageinspect.sgml
+++ b/doc/src/sgml/pageinspect.sgml
@@ -700,7 +700,7 @@ test=# SELECT * FROM gin_page_opaque_info(get_raw_page('gin_index', 2));
<listitem>
<para>
<function>gin_leafpage_items</function> returns information about
- the data stored in a <acronym>GIN</acronym> leaf page. For example:
+ the data stored in a compressed <acronym>GIN</acronym> leaf page. For example:
<screen>
test=# SELECT first_tid, nbytes, tids[0:5] AS some_tids
FROM gin_leafpage_items(get_raw_page('gin_test_idx', 2));