aboutsummaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2023-07-18 14:04:52 +0900
committerMichael Paquier <michael@paquier.xyz>2023-07-18 14:04:52 +0900
commit410a0d6bdad283cc086fa05429cb53d178c62a99 (patch)
tree78bd9de0fa6141d9363024f5e61db5710f8e08ad /src/backend
parentd2ee542a2bbec269115f7b1b4eb7ea59f879dc58 (diff)
downloadpostgresql-410a0d6bdad283cc086fa05429cb53d178c62a99.tar.gz
postgresql-410a0d6bdad283cc086fa05429cb53d178c62a99.zip
Fix indentation in twophase.c
This has been missed in cb0cca1, noticed before buildfarm member koel has been able to complain while poking at a different patch. Like the other commit, backpatch all the way down to limit the odds of merge conflicts. Backpatch-through: 11
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/access/transam/twophase.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/access/transam/twophase.c b/src/backend/access/transam/twophase.c
index e3707f7d5e3..e9ab612717e 100644
--- a/src/backend/access/transam/twophase.c
+++ b/src/backend/access/transam/twophase.c
@@ -2497,11 +2497,11 @@ PrepareRedoAdd(char *buf, XLogRecPtr start_lsn,
/*
* In the event of a crash while a checkpoint was running, it may be
* possible that some two-phase data found its way to disk while its
- * corresponding record needs to be replayed in the follow-up recovery.
- * As the 2PC data was on disk, it has already been restored at the
- * beginning of recovery with restoreTwoPhaseData(), so skip this record
- * to avoid duplicates in TwoPhaseState. If a consistent state has been
- * reached, the record is added to TwoPhaseState and it should have no
+ * corresponding record needs to be replayed in the follow-up recovery. As
+ * the 2PC data was on disk, it has already been restored at the beginning
+ * of recovery with restoreTwoPhaseData(), so skip this record to avoid
+ * duplicates in TwoPhaseState. If a consistent state has been reached,
+ * the record is added to TwoPhaseState and it should have no
* corresponding file in pg_twophase.
*/
if (!XLogRecPtrIsInvalid(start_lsn))