summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/heap/vacuumlazy.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/access/heap/vacuumlazy.c b/src/backend/access/heap/vacuumlazy.c
index 5d8fd2fb72..e962b8d72b 100644
--- a/src/backend/access/heap/vacuumlazy.c
+++ b/src/backend/access/heap/vacuumlazy.c
@@ -1595,7 +1595,8 @@ retry:
/* Redirect items mustn't be touched */
if (ItemIdIsRedirected(itemid))
{
- prunestate->hastup = true; /* page won't be truncatable */
+ /* page makes rel truncation unsafe */
+ prunestate->hastup = true;
continue;
}