diff options
-rw-r--r-- | src/backend/access/heap/vacuumlazy.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/access/heap/vacuumlazy.c b/src/backend/access/heap/vacuumlazy.c index 5d8fd2fb727..e962b8d72bc 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; } |