diff options
| author | Michael Paquier | 2023-07-18 05:04:54 +0000 |
|---|---|---|
| committer | Michael Paquier | 2023-07-18 05:04:54 +0000 |
| commit | 6c7bffc096a65142fe6e461961dac50dec9bd75c (patch) | |
| tree | 8d3f02f67c741a5de07ea369d8b357db37972600 /src/backend | |
| parent | bc0581f8fb8b52a497e7ea06454f276b99abb72b (diff) | |
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.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/access/transam/twophase.c b/src/backend/access/transam/twophase.c index 9e8c1f84156..39c0afbee0f 100644 --- a/src/backend/access/transam/twophase.c +++ b/src/backend/access/transam/twophase.c @@ -2512,11 +2512,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)) |
