1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-28 18:48:04 +03:00

Fix HeapTupleSatisfiesNonVacuumable() comment.

Oversight in commit 63746189b2.
This commit is contained in:
Peter Geoghegan
2019-11-20 11:36:54 -08:00
parent 2ddedcafca
commit 9f0f12ac57

View File

@@ -1389,7 +1389,7 @@ HeapTupleSatisfiesVacuum(HeapTuple htup, TransactionId OldestXmin,
* True if tuple might be visible to some transaction; false if it's * True if tuple might be visible to some transaction; false if it's
* surely dead to everyone, ie, vacuumable. * 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 * This is an interface to HeapTupleSatisfiesVacuum that's callable via
* HeapTupleSatisfiesSnapshot, so it can be used through a Snapshot. * HeapTupleSatisfiesSnapshot, so it can be used through a Snapshot.