diff options
author | Peter Geoghegan <pg@bowt.ie> | 2019-05-13 15:53:39 -0700 |
---|---|---|
committer | Peter Geoghegan <pg@bowt.ie> | 2019-05-13 15:53:39 -0700 |
commit | ae7291acbc5ae4c3751615177fc256f9f3399403 (patch) | |
tree | 8a67a1936fe81aa9d5e5b1c4b023f7993d6b9437 /src/backend/access/heap/heapam_handler.c | |
parent | 08ca9d7feca890e97f77ef1fde02d7542a54ac5e (diff) | |
download | postgresql-ae7291acbc5ae4c3751615177fc256f9f3399403.tar.gz postgresql-ae7291acbc5ae4c3751615177fc256f9f3399403.zip |
Standardize ItemIdData terminology.
The term "item pointer" should not be used to refer to ItemIdData
variables, since that is needlessly ambiguous. Only
ItemPointerData/ItemPointer variables should be called item pointers.
To fix, establish the convention that ItemIdData variables should always
be referred to either as "item identifiers" or "line pointers". The
term "item identifier" already predominates in docs and translatable
messages, and so should be the preferred alternative there.
Discussion: https://postgr.es/m/CAH2-Wz=c=MZQjUzde3o9+2PLAPuHTpVZPPdYxN=E4ndQ2--8ew@mail.gmail.com
Diffstat (limited to 'src/backend/access/heap/heapam_handler.c')
-rw-r--r-- | src/backend/access/heap/heapam_handler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/heap/heapam_handler.c b/src/backend/access/heap/heapam_handler.c index 4d179881f27..bc47856ad53 100644 --- a/src/backend/access/heap/heapam_handler.c +++ b/src/backend/access/heap/heapam_handler.c @@ -2162,7 +2162,7 @@ heapam_scan_bitmap_next_block(TableScanDesc scan, else { /* - * Bitmap is lossy, so we must examine each item pointer on the page. + * Bitmap is lossy, so we must examine each line pointer on the page. * But we can ignore HOT chains, since we'll check each tuple anyway. */ Page dp = (Page) BufferGetPage(buffer); |