diff options
author | Peter Geoghegan <pg@bowt.ie> | 2021-08-31 16:35:01 -0700 |
---|---|---|
committer | Peter Geoghegan <pg@bowt.ie> | 2021-08-31 16:35:01 -0700 |
commit | 6320806ac3792a297f1c4eb149c3ddeda25d3930 (patch) | |
tree | 43060abefc7054f9f73155bbadfee57786dcd947 | |
parent | 13380e1476490932c7b15530ead1f649a16e1125 (diff) | |
download | postgresql-6320806ac3792a297f1c4eb149c3ddeda25d3930.tar.gz postgresql-6320806ac3792a297f1c4eb149c3ddeda25d3930.zip |
vacuumlazy.c: Correct prune state comment.
Oversight in commit 7ab96cf6b3.
-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 19d8276de2c..1cc97c6cc88 100644 --- a/src/backend/access/heap/vacuumlazy.c +++ b/src/backend/access/heap/vacuumlazy.c @@ -2038,7 +2038,7 @@ retry: /* * Now save details of the LP_DEAD items from the page in the dead_tuples - * array. Also record that page has dead items in per-page prunestate. + * array */ if (lpdead_items > 0) { |