aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorPeter Geoghegan <pg@bowt.ie>2019-05-13 15:39:06 -0700
committerPeter Geoghegan <pg@bowt.ie>2019-05-13 15:39:06 -0700
commit08ca9d7feca890e97f77ef1fde02d7542a54ac5e (patch)
tree7eba52fa34ac341eaa8648f9acfc74d523090e85 /doc/src
parent32ebb35128c3d16b64039f6d6774afd96a3d91b9 (diff)
downloadpostgresql-08ca9d7feca890e97f77ef1fde02d7542a54ac5e.tar.gz
postgresql-08ca9d7feca890e97f77ef1fde02d7542a54ac5e.zip
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.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/storage.sgml8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/storage.sgml b/doc/src/sgml/storage.sgml
index 4285b0a157d..c4bac87e80e 100644
--- a/doc/src/sgml/storage.sgml
+++ b/doc/src/sgml/storage.sgml
@@ -759,14 +759,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>