Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 9afdea9

Browse files
Fix VACUUM VERBOSE's LP_DEAD item pages output.
Oversight in commit 5100010.
1 parent a4390ab commit 9afdea9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/access/heap/vacuumlazy.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2153,7 +2153,7 @@ lazy_vacuum(LVRelState *vacrel, bool onecall)
21532153
vacrel->do_index_vacuuming = false;
21542154
ereport(elevel,
21552155
(errmsg("\"%s\": index scan bypassed: %u pages from table (%.2f%% of total) have %lld dead item identifiers",
2156-
vacrel->relname, vacrel->rel_pages,
2156+
vacrel->relname, vacrel->lpdead_item_pages,
21572157
100.0 * vacrel->lpdead_item_pages / vacrel->rel_pages,
21582158
(long long) vacrel->lpdead_items)));
21592159
}

0 commit comments

Comments
 (0)