]> granicus.if.org Git - postgresql/commitdiff
Doc: Refer to line pointers as item identifiers.
authorPeter Geoghegan <pg@bowt.ie>
Mon, 13 May 2019 22:38:57 +0000 (15:38 -0700)
committerPeter Geoghegan <pg@bowt.ie>
Mon, 13 May 2019 22:38:57 +0000 (15:38 -0700)
An upcoming HEAD-only patch will standardize the terminology around
ItemIdData variables/line pointers, ending the practice of referring to
them as "item pointers".  Make the "Database Page Layout" docs
consistent with the new policy.  The term "item identifier" is already
used in the same section, so stick with that.

Discussion: https://postgr.es/m/CAH2-Wz=c=MZQjUzde3o9+2PLAPuHTpVZPPdYxN=E4ndQ2--8ew@mail.gmail.com
Backpatch: All supported branches.

doc/src/sgml/storage.sgml

index fb2b8b950d05bfce28bcf7e6273b4daf84d5f112..bb72af898d67f042a9b444c7546865d04b005d35 100644 (file)
@@ -618,14 +618,14 @@ free space pointers.</entry>
 
 <row>
 <entry>ItemIdData</entry>
-<entry>Array of (offset,length) pairs pointing to the actual items.
-4 bytes per item.</entry>
+<entry>Array of item identifiers pointing to the actual items. Each
+entry is an (offset,length) pair. 4 bytes per item.</entry>
 </row>
 
 <row>
 <entry>Free space</entry>
-<entry>The unallocated space. New item pointers are allocated from the start
-of this area, new items from the end.</entry>
+<entry>The unallocated space. New item identifiers are allocated from
+the start of this area, new items from the end.</entry>
 </row>
 
 <row>