Skip to content

Commit f914b8b

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 7678f76 commit f914b8b

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
@@ -10149,7 +10149,7 @@ VerifyOverwriteContrecord(xl_overwrite_contrecord *xlrec, XLogReaderState *state
1014910149
(uint32) state->overwrittenRecPtr);
1015010150

1015110151
ereport(LOG,
10152-
(errmsg("sucessfully skipped missing contrecord at %X/%X, overwritten at %s",
10152+
(errmsg("successfully skipped missing contrecord at %X/%X, overwritten at %s",
1015310153
(uint32) (xlrec->overwritten_lsn >> 32),
1015410154
(uint32) xlrec->overwritten_lsn,
1015510155
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
@@ -2524,7 +2524,7 @@ msgstr "unerwartete Zeitleisten-ID %u (sollte %u sein) im Checkpoint-Datensatz"
25242524

25252525
#: access/transam/xlog.c:10152
25262526
#, c-format
2527-
msgid "sucessfully skipped missing contrecord at %X/%X, overwritten at %s"
2527+
msgid "successfully skipped missing contrecord at %X/%X, overwritten at %s"
25282528
msgstr "fehlender Contrecord bei %X/%X erfolgreich übersprungen, überschrieben am %s"
25292529

25302530
#: access/transam/xlog.c:10339

src/backend/po/fr.po

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

24592459
#: access/transam/xlog.c:10152
24602460
#, c-format
2461-
msgid "sucessfully skipped missing contrecord at %X/%X, overwritten at %s"
2461+
msgid "successfully skipped missing contrecord at %X/%X, overwritten at %s"
24622462
msgstr "ignore avec succès le contrecord manquant à %X/%X, surchargé à %s"
24632463

24642464
#: access/transam/xlog.c:10339

src/backend/po/ru.po

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

29592959
#: access/transam/xlog.c:10152
29602960
#, c-format
2961-
msgid "sucessfully skipped missing contrecord at %X/%X, overwritten at %s"
2961+
msgid "successfully skipped missing contrecord at %X/%X, overwritten at %s"
29622962
msgstr ""
29632963
"успешно пропущена отсутствующая запись contrecord в %X/%X, перезаписанная в "
29642964
"%s"

src/backend/po/sv.po

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

25422542
#: access/transam/xlog.c:10152
25432543
#, c-format
2544-
msgid "sucessfully skipped missing contrecord at %X/%X, overwritten at %s"
2544+
msgid "successfully skipped missing contrecord at %X/%X, overwritten at %s"
25452545
msgstr "lyckades hoppa över saknad contrecord vid %X/%X, överskriven vid %s"
25462546

25472547
#: access/transam/xlog.c:10339

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)