diff options
author | Peter Geoghegan | 2019-11-20 19:36:54 +0000 |
---|---|---|
committer | Peter Geoghegan | 2019-11-20 19:36:54 +0000 |
commit | 9f0f12ac57023653ad870a33a2e0337e6f3bf512 (patch) | |
tree | 9ab02bfc174196ced9e4b91f96908a5704df0692 /src | |
parent | 2ddedcafca116c99e08c777ab2ab3a4de6f00c7e (diff) |
Fix HeapTupleSatisfiesNonVacuumable() comment.
Oversight in commit 63746189b23.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/heap/heapam_visibility.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/heap/heapam_visibility.c b/src/backend/access/heap/heapam_visibility.c index 537e681b236..3e3646716fd 100644 --- a/src/backend/access/heap/heapam_visibility.c +++ b/src/backend/access/heap/heapam_visibility.c @@ -1389,7 +1389,7 @@ HeapTupleSatisfiesVacuum(HeapTuple htup, TransactionId OldestXmin, * True if tuple might be visible to some transaction; false if it's * surely dead to everyone, ie, vacuumable. * - * See SNAPSHOT_TOAST's definition for the intended behaviour. + * See SNAPSHOT_NON_VACUUMABLE's definition for the intended behaviour. * * This is an interface to HeapTupleSatisfiesVacuum that's callable via * HeapTupleSatisfiesSnapshot, so it can be used through a Snapshot. |