Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 607a3a4

Browse files
committed
Fix incorrect PITR message for transaction ROLLBACK PREPARED
Reaching PITR on such a transaction would cause the generation of a LOG message mentioning a transaction committed, not aborted. Oversight in 4f1b890. Author: Simon Riggs Discussion: https://postgr.es/m/CANbhV-GJ6KijeCgdOrxqMCQ+C8QiK657EMhCy4csjrPcEUFv_Q@mail.gmail.com Backpatch-through: 9.6
1 parent 322e82b commit 607a3a4

File tree

1 file changed

+1
-1
lines changed
  • src/backend/access/transam

1 file changed

+1
-1
lines changed

src/backend/access/transam/xlog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5808,7 +5808,7 @@ recoveryStopsBefore(XLogReaderState *record)
58085808
xl_xact_abort *xlrec = (xl_xact_abort *) XLogRecGetData(record);
58095809
xl_xact_parsed_abort parsed;
58105810

5811-
isCommit = true;
5811+
isCommit = false;
58125812
ParseAbortRecord(XLogRecGetInfo(record),
58135813
xlrec,
58145814
&parsed);

0 commit comments

Comments
 (0)