diff options
author | Amit Kapila <akapila@postgresql.org> | 2020-04-13 15:31:16 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2020-04-13 15:31:16 +0530 |
commit | ef08ca113fe302b9ddf298964756eadcd41e77a1 (patch) | |
tree | f3c297266d3d06544fea93ba6ac9ca9ba0f06778 /src/backend/access/heap/vacuumlazy.c | |
parent | 0c620a5803afbb667da7ac4bcc91b245a214a80c (diff) |
Cosmetic fixups for WAL usage work.
Reported-by: Justin Pryzby and Euler Taveira
Author: Justin Pryzby and Julien Rouhaud
Reviewed-by: Amit Kapila
Discussion: https://postgr.es/m/CAB-hujrP8ZfUkvL5OYETipQwA=e3n7oqHFU=4ZLxWS_Cza3kQQ@mail.gmail.com
Diffstat (limited to 'src/backend/access/heap/vacuumlazy.c')
-rw-r--r-- | src/backend/access/heap/vacuumlazy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/heap/vacuumlazy.c b/src/backend/access/heap/vacuumlazy.c index f3382d37a40..d8bc06fe0b7 100644 --- a/src/backend/access/heap/vacuumlazy.c +++ b/src/backend/access/heap/vacuumlazy.c @@ -676,7 +676,7 @@ heap_vacuum_rel(Relation onerel, VacuumParams *params, _("WAL usage: %ld records, %ld full page writes, " UINT64_FORMAT " bytes"), walusage.wal_records, - walusage.wal_num_fpw, + walusage.wal_fpw, walusage.wal_bytes); ereport(LOG, |