diff options
author | Peter Geoghegan <pg@bowt.ie> | 2021-11-30 11:40:33 -0800 |
---|---|---|
committer | Peter Geoghegan <pg@bowt.ie> | 2021-11-30 11:40:33 -0800 |
commit | 4bdfe6855901a4104dbdac2be53d465b626e244d (patch) | |
tree | f620a8c8c179d8e3b7d988a4fc7cd3d07042136b /src/backend | |
parent | 5753d4ee320b3f6fb2ff734667a1ce1d9d8615a1 (diff) | |
download | postgresql-4bdfe6855901a4104dbdac2be53d465b626e244d.tar.gz postgresql-4bdfe6855901a4104dbdac2be53d465b626e244d.zip |
vacuumlazy.c: fix remaining "dead tuple" references.
Oversight in commit 4f8d9d12.
Reported-By: Masahiko Sawada <sawada.mshk@gmail.com>
Discussion: https://postgr.es/m/CAD21AoDm38Em0bvRqeQKr4HPvOj65Y8cUgCP4idMk39iaLrxyw@mail.gmail.com
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/access/heap/vacuumlazy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/heap/vacuumlazy.c b/src/backend/access/heap/vacuumlazy.c index 6a2fa2ba0aa..282b44f87bf 100644 --- a/src/backend/access/heap/vacuumlazy.c +++ b/src/backend/access/heap/vacuumlazy.c @@ -955,7 +955,7 @@ lazy_scan_heap(LVRelState *vacrel, VacuumParams *params, bool aggressive) lazy_check_wraparound_failsafe(vacrel); /* - * Allocate the space for dead tuples. Note that this handles parallel + * Allocate the space for dead_items. Note that this handles parallel * VACUUM initialization as part of allocating shared memory space used * for dead_items. */ @@ -1359,7 +1359,7 @@ lazy_scan_heap(LVRelState *vacrel, VacuumParams *params, bool aggressive) * Prune and freeze tuples. * * Accumulates details of remaining LP_DEAD line pointers on page in - * dead tuple list. This includes LP_DEAD line pointers that we + * dead_items array. This includes LP_DEAD line pointers that we * pruned ourselves, as well as existing LP_DEAD line pointers that * were pruned some time earlier. Also considers freezing XIDs in the * tuple headers of remaining items with storage. |