Skip to content

Commit 3aa572b

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 e8fd18b commit 3aa572b

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
@@ -10297,7 +10297,7 @@ VerifyOverwriteContrecord(xl_overwrite_contrecord *xlrec, XLogReaderState *state
1029710297
(uint32) state->overwrittenRecPtr);
1029810298

1029910299
ereport(LOG,
10300-
(errmsg("sucessfully skipped missing contrecord at %X/%X, overwritten at %s",
10300+
(errmsg("successfully skipped missing contrecord at %X/%X, overwritten at %s",
1030110301
(uint32) (xlrec->overwritten_lsn >> 32),
1030210302
(uint32) xlrec->overwritten_lsn,
1030310303
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
@@ -2391,7 +2391,7 @@ msgstr "unerwartete Zeitleisten-ID %u (sollte %u sein) im Checkpoint-Datensatz"
23912391

23922392
#: access/transam/xlog.c:10300
23932393
#, c-format
2394-
msgid "sucessfully skipped missing contrecord at %X/%X, overwritten at %s"
2394+
msgid "successfully skipped missing contrecord at %X/%X, overwritten at %s"
23952395
msgstr "fehlender Contrecord bei %X/%X erfolgreich übersprungen, überschrieben am %s"
23962396

23972397
#: access/transam/xlog.c:10453

src/backend/po/fr.po

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

24002400
#: access/transam/xlog.c:10300
24012401
#, c-format
2402-
msgid "sucessfully skipped missing contrecord at %X/%X, overwritten at %s"
2402+
msgid "successfully skipped missing contrecord at %X/%X, overwritten at %s"
24032403
msgstr "ignore avec succès le contrecord manquant à %X/%X, surchargé à %s"
24042404

24052405
#: access/transam/xlog.c:10453

src/backend/po/ru.po

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

27922792
#: access/transam/xlog.c:10300
27932793
#, c-format
2794-
msgid "sucessfully skipped missing contrecord at %X/%X, overwritten at %s"
2794+
msgid "successfully skipped missing contrecord at %X/%X, overwritten at %s"
27952795
msgstr ""
27962796
"успешно пропущена отсутствующая запись contrecord в %X/%X, перезаписанная в "
27972797
"%s"

src/backend/po/sv.po

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

24082408
#: access/transam/xlog.c:10300
24092409
#, c-format
2410-
msgid "sucessfully skipped missing contrecord at %X/%X, overwritten at %s"
2410+
msgid "successfully skipped missing contrecord at %X/%X, overwritten at %s"
24112411
msgstr "lyckades hoppa över saknad contrecord vid %X/%X, överskriven vid %s"
24122412

24132413
#: access/transam/xlog.c:10453

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)