Content-Length: 260583 | pFad | https://github.com/postgrespro/postgres/commit/438fc4a39c3905b7af88bb848bc5aeb1308a017d

12 Fix bug in WAL replay of COMMIT_TS_SETTS record. · postgrespro/postgres@438fc4a · GitHub
Skip to content

Commit 438fc4a

Browse files
committed
Fix bug in WAL replay of COMMIT_TS_SETTS record.
Previously the WAL replay of COMMIT_TS_SETTS record called TransactionTreeSetCommitTsData() with the argument write_xlog=true, which generated and wrote new COMMIT_TS_SETTS record. This should not be acceptable because it's during recovery. This commit fixes the WAL replay of COMMIT_TS_SETTS record so that it calls TransactionTreeSetCommitTsData() with write_xlog=false and doesn't generate new WAL during recovery. Back-patch to all supported branches. Reported-by: lx zou <zoulx1982@163.com> Author: Fujii Masao Reviewed-by: Alvaro Herrera Discussion: https://postgr.es/m/16931-620d0f2fdc6108f1@postgresql.org
1 parent df93844 commit 438fc4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/access/transam/commit_ts.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ commit_ts_redo(XLogReaderState *record)
10741074
subxids = NULL;
10751075

10761076
TransactionTreeSetCommitTsData(setts->mainxid, nsubxids, subxids,
1077-
setts->timestamp, setts->nodeid, true);
1077+
setts->timestamp, setts->nodeid, false);
10781078
if (subxids)
10791079
pfree(subxids);
10801080
}

0 commit comments

Comments
 (0)








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://github.com/postgrespro/postgres/commit/438fc4a39c3905b7af88bb848bc5aeb1308a017d

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy