diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2015-06-27 02:22:26 +0100 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2015-06-27 02:22:26 +0100 |
commit | b340502b052e5bba4bbe736244cc9ea6156e2974 (patch) | |
tree | 11784d1179095bcab39ba2aa1bf47b14503aee39 /src | |
parent | 9e23d05b256adb0964f13464f9be5ae6e856cd19 (diff) |
Revoke incorrectly applied patch version
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/heap/heapam.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c index 634c0313c94..6645732f74c 100644 --- a/src/backend/access/heap/heapam.c +++ b/src/backend/access/heap/heapam.c @@ -4307,13 +4307,7 @@ heap_xlog_freeze(XLogRecPtr lsn, XLogRecord *record) * consider the frozen xids as running. */ if (InHotStandby) - { - TransactionId latestRemovedXid = cutoff_xid; - - TransactionIdRetreat(latestRemovedXid); - - ResolveRecoveryConflictWithSnapshot(latestRemovedXid, rnode); - } + ResolveRecoveryConflictWithSnapshot(cutoff_xid, xlrec->node); /* If we have a full-page image, restore it and we're done */ if (record->xl_info & XLR_BKP_BLOCK(0)) |