The term "truncation" has been ambiguous since commit
10a8d13823 added
line pointer array truncation during heap pruning. Clear things up by
specifying that we're talking about rel truncation here, to match nearby
comments that apply to tuples with storage.
/* 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;
}