You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
This feature is controlled by a new old_snapshot_threshold GUC. Avalue of -1 disables the feature, and that is the default. Thevalue of 0 is just intended for testing. Above that it is thenumber of minutes a snapshot can reach before pruning and vacuumare allowed to remove dead tuples which the snapshot wouldotherwise protect. The xmin associated with a transaction ID doesstill protect dead tuples. A connection which is using an "old"snapshot does not get an error unless it accesses a page modifiedrecently enough that it might not be able to produce accurateresults.This is similar to the Oracle feature, and we use the same SQLSTATEand error message for compatibility.