From dd01bbf00cbfd58fae6195070c2440f8f2187045 Mon Sep 17 00:00:00 2001 From: Peter Geoghegan Date: Mon, 13 May 2019 15:38:59 -0700 Subject: [PATCH] Doc: Refer to line pointers as item identifiers. 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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/src/sgml/storage.sgml b/doc/src/sgml/storage.sgml index 164d08ce49..adf9343363 100644 --- a/doc/src/sgml/storage.sgml +++ b/doc/src/sgml/storage.sgml @@ -730,14 +730,14 @@ free space pointers. ItemIdData -Array of (offset,length) pairs pointing to the actual items. -4 bytes per item. +Array of item identifiers pointing to the actual items. Each +entry is an (offset,length) pair. 4 bytes per item. Free space -The unallocated space. New item pointers are allocated from the start -of this area, new items from the end. +The unallocated space. New item identifiers are allocated from +the start of this area, new items from the end. -- 2.40.0