aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2023-07-18 14:04:50 +0900
committerMichael Paquier <michael@paquier.xyz>2023-07-18 14:04:50 +0900
commit763d26205ad0245721a5efe1107fa3c398ff2695 (patch)
tree13fb35377b7808f2c55f697c9914b0f8deb5acbe /src
parent442749100d34a213f71c73d98bc7b43478832e3a (diff)
downloadpostgresql-763d26205ad0245721a5efe1107fa3c398ff2695.tar.gz
postgresql-763d26205ad0245721a5efe1107fa3c398ff2695.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')
-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 0444e64da7b..076315e7a28 100644
--- a/src/backend/access/transam/twophase.c
+++ b/src/backend/access/transam/twophase.c
@@ -2448,11 +2448,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))