Skip to content

Commit 4bdfe68

Browse files
vacuumlazy.c: fix remaining "dead tuple" references.
Oversight in commit 4f8d9d1. Reported-By: Masahiko Sawada <sawada.mshk@gmail.com> Discussion: https://postgr.es/m/CAD21AoDm38Em0bvRqeQKr4HPvOj65Y8cUgCP4idMk39iaLrxyw@mail.gmail.com
1 parent 5753d4e commit 4bdfe68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/access/heap/vacuumlazy.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,7 @@ lazy_scan_heap(LVRelState *vacrel, VacuumParams *params, bool aggressive)
955955
lazy_check_wraparound_failsafe(vacrel);
956956

957957
/*
958-
* Allocate the space for dead tuples. Note that this handles parallel
958+
* Allocate the space for dead_items. Note that this handles parallel
959959
* VACUUM initialization as part of allocating shared memory space used
960960
* for dead_items.
961961
*/
@@ -1359,7 +1359,7 @@ lazy_scan_heap(LVRelState *vacrel, VacuumParams *params, bool aggressive)
13591359
* Prune and freeze tuples.
13601360
*
13611361
* Accumulates details of remaining LP_DEAD line pointers on page in
1362-
* dead tuple list. This includes LP_DEAD line pointers that we
1362+
* dead_items array. This includes LP_DEAD line pointers that we
13631363
* pruned ourselves, as well as existing LP_DEAD line pointers that
13641364
* were pruned some time earlier. Also considers freezing XIDs in the
13651365
* tuple headers of remaining items with storage.

0 commit comments

Comments
 (0)