Skip to content

Commit 7c0a78f

Browse files
Fix typo
Introduced in 1d97d3d. Co-authored-by: Alexander Lakhin <exclusion@gmail.com> Discussion: https://postgr.es/m/83641f59-d566-b33e-ef21-a272a98675aa@gmail.com
1 parent 98da5cd commit 7c0a78f

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/backend/access/transam/xlog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10383,7 +10383,7 @@ VerifyOverwriteContrecord(xl_overwrite_contrecord *xlrec, XLogReaderState *state
1038310383
(uint32) state->overwrittenRecPtr);
1038410384

1038510385
ereport(LOG,
10386-
(errmsg("sucessfully skipped missing contrecord at %X/%X, overwritten at %s",
10386+
(errmsg("successfully skipped missing contrecord at %X/%X, overwritten at %s",
1038710387
(uint32) (xlrec->overwritten_lsn >> 32),
1038810388
(uint32) xlrec->overwritten_lsn,
1038910389
timestamptz_to_str(xlrec->overwrite_time))));

src/backend/po/de.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2702,7 +2702,7 @@ msgstr "unerwartete Zeitleisten-ID %u (sollte %u sein) im Checkpoint-Datensatz"
27022702

27032703
#: access/transam/xlog.c:10386
27042704
#, c-format
2705-
msgid "sucessfully skipped missing contrecord at %X/%X, overwritten at %s"
2705+
msgid "successfully skipped missing contrecord at %X/%X, overwritten at %s"
27062706
msgstr "fehlender Contrecord bei %X/%X erfolgreich übersprungen, überschrieben am %s"
27072707

27082708
#: access/transam/xlog.c:10579

src/backend/po/fr.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2624,7 +2624,7 @@ msgstr ""
26242624

26252625
#: access/transam/xlog.c:10386
26262626
#, c-format
2627-
msgid "sucessfully skipped missing contrecord at %X/%X, overwritten at %s"
2627+
msgid "successfully skipped missing contrecord at %X/%X, overwritten at %s"
26282628
msgstr "ignore avec succès le contrecord manquant à %X/%X, surchargé à %s"
26292629

26302630
#: access/transam/xlog.c:10579

src/backend/po/ru.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3157,7 +3157,7 @@ msgstr ""
31573157

31583158
#: access/transam/xlog.c:10386
31593159
#, c-format
3160-
msgid "sucessfully skipped missing contrecord at %X/%X, overwritten at %s"
3160+
msgid "successfully skipped missing contrecord at %X/%X, overwritten at %s"
31613161
msgstr ""
31623162
"успешно пропущена отсутствующая запись contrecord в %X/%X, перезаписанная в "
31633163
"%s"

src/backend/po/sv.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2719,7 +2719,7 @@ msgstr "oväntad tidslinje-ID %u (skall vara %u) i checkpoint-post"
27192719

27202720
#: access/transam/xlog.c:10386
27212721
#, c-format
2722-
msgid "sucessfully skipped missing contrecord at %X/%X, overwritten at %s"
2722+
msgid "successfully skipped missing contrecord at %X/%X, overwritten at %s"
27232723
msgstr "lyckades hoppa över saknad contrecord vid %X/%X, överskriven vid %s"
27242724

27252725
#: access/transam/xlog.c:10579

src/test/recovery/t/026_overwrite_contrecord.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ END
9494
my $log = slurp_file($node_standby->logfile);
9595
like(
9696
$log,
97-
qr[sucessfully skipped missing contrecord at],
97+
qr[successfully skipped missing contrecord at],
9898
"found log line in standby");
9999

100100
$node->stop;

0 commit comments

Comments
 (0)