Skip to content

Commit 9b6194e

Browse files
Fix typo
Introduced in e0eaeaf. Co-authored-by: Alexander Lakhin <exclusion@gmail.com> Discussion: https://postgr.es/m/83641f59-d566-b33e-ef21-a272a98675aa@gmail.com
1 parent 374a667 commit 9b6194e

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
@@ -9927,7 +9927,7 @@ VerifyOverwriteContrecord(xl_overwrite_contrecord *xlrec, XLogReaderState *state
99279927
(uint32) state->overwrittenRecPtr);
99289928

99299929
ereport(LOG,
9930-
(errmsg("sucessfully skipped missing contrecord at %X/%X, overwritten at %s",
9930+
(errmsg("successfully skipped missing contrecord at %X/%X, overwritten at %s",
99319931
(uint32) (xlrec->overwritten_lsn >> 32),
99329932
(uint32) xlrec->overwritten_lsn,
99339933
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
@@ -2317,7 +2317,7 @@ msgstr "unerwartete Zeitleisten-ID %u (sollte %u sein) im Checkpoint-Datensatz"
23172317

23182318
#: access/transam/xlog.c:9930
23192319
#, c-format
2320-
msgid "sucessfully skipped missing contrecord at %X/%X, overwritten at %s"
2320+
msgid "successfully skipped missing contrecord at %X/%X, overwritten at %s"
23212321
msgstr "fehlender Contrecord bei %X/%X erfolgreich übersprungen, überschrieben am %s"
23222322

23232323
#: access/transam/xlog.c:10082

src/backend/po/fr.po

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

23382338
#: access/transam/xlog.c:9930
23392339
#, c-format
2340-
msgid "sucessfully skipped missing contrecord at %X/%X, overwritten at %s"
2340+
msgid "successfully skipped missing contrecord at %X/%X, overwritten at %s"
23412341
msgstr "ignore avec succès le contrecord manquant à %X/%X, surchargé à %s"
23422342

23432343
#: access/transam/xlog.c:10082

src/backend/po/ru.po

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

27042704
#: access/transam/xlog.c:9930
27052705
#, c-format
2706-
msgid "sucessfully skipped missing contrecord at %X/%X, overwritten at %s"
2706+
msgid "successfully skipped missing contrecord at %X/%X, overwritten at %s"
27072707
msgstr ""
27082708
"успешно пропущена отсутствующая запись contrecord в %X/%X, перезаписанная в "
27092709
"%s"

src/backend/po/sv.po

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

23332333
#: access/transam/xlog.c:9930
23342334
#, c-format
2335-
msgid "sucessfully skipped missing contrecord at %X/%X, overwritten at %s"
2335+
msgid "successfully skipped missing contrecord at %X/%X, overwritten at %s"
23362336
msgstr "lyckades hoppa över saknad contrecord vid %X/%X, överskriven vid %s"
23372337

23382338
#: access/transam/xlog.c:10082

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ END
105105
my $log = slurp_file($node_standby->logfile);
106106
like(
107107
$log,
108-
qr[sucessfully skipped missing contrecord at],
108+
qr[successfully skipped missing contrecord at],
109109
"found log line in standby");
110110

111111
$node->stop;

0 commit comments

Comments
 (0)