mirror of
https://github.com/postgres/postgres.git
synced 2026-02-20 00:10:16 -05:00
Adjust VACUUM hastup LP_REDIRECT comments.
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.
This commit is contained in:
parent
6daeeb1f91
commit
325bc54eed
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue