mirror of
https://github.com/postgres/postgres.git
synced 2025-11-21 00:42:43 +03:00
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
This commit is contained in:
@@ -509,7 +509,7 @@ lazy_scan_heap(Relation onerel, VacuumParams *params, LVRelStats *vacrelstats,
|
||||
live_tuples, /* live tuples (reltuples estimate) */
|
||||
tups_vacuumed, /* tuples cleaned up by vacuum */
|
||||
nkeep, /* dead-but-not-removable tuples */
|
||||
nunused; /* unused item pointers */
|
||||
nunused; /* unused line pointers */
|
||||
IndexBulkDeleteResult **indstats;
|
||||
int i;
|
||||
PGRUsage ru0;
|
||||
@@ -1017,7 +1017,7 @@ lazy_scan_heap(Relation onerel, VacuumParams *params, LVRelStats *vacrelstats,
|
||||
ItemPointerSet(&(tuple.t_self), blkno, offnum);
|
||||
|
||||
/*
|
||||
* DEAD item pointers are to be vacuumed normally; but we don't
|
||||
* DEAD line pointers are to be vacuumed normally; but we don't
|
||||
* count them in tups_vacuumed, else we'd be double-counting (at
|
||||
* least in the common case where heap_page_prune() just freed up
|
||||
* a non-HOT tuple).
|
||||
@@ -1483,7 +1483,7 @@ lazy_scan_heap(Relation onerel, VacuumParams *params, LVRelStats *vacrelstats,
|
||||
appendStringInfo(&buf,
|
||||
_("%.0f dead row versions cannot be removed yet, oldest xmin: %u\n"),
|
||||
nkeep, OldestXmin);
|
||||
appendStringInfo(&buf, _("There were %.0f unused item pointers.\n"),
|
||||
appendStringInfo(&buf, _("There were %.0f unused item identifiers.\n"),
|
||||
nunused);
|
||||
appendStringInfo(&buf, ngettext("Skipped %u page due to buffer pins, ",
|
||||
"Skipped %u pages due to buffer pins, ",
|
||||
|
||||
Reference in New Issue
Block a user