diff options
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 d57055674ed..9c88b9bd71a 100644 --- a/src/backend/access/heap/vacuumlazy.c +++ b/src/backend/access/heap/vacuumlazy.c @@ -1112,7 +1112,7 @@ lazy_scan_heap(LVRelState *vacrel, int nworkers) if (lazy_scan_noprune(vacrel, buf, blkno, page, &hastup, &recordfreespace)) { - Size freespace; + Size freespace = 0; /* * Processed page successfully (without cleanup lock) -- just |