Skip to content

Commit 8c5e8e0

Browse files
committed
minor spell fix in elog messages about LSN from future
1 parent 62a6317 commit 8c5e8e0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/data.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1501,8 +1501,8 @@ validate_one_page(Page page, pgFile *file,
15011501
lsn = PageXLogRecPtrGet(phdr->pd_lsn);
15021502

15031503
if (lsn > stop_lsn)
1504-
elog(WARNING, "File: %s, block %u, checksum is not enabled."
1505-
"page is from future: pageLSN %X/%X stopLSN %X/%X",
1504+
elog(WARNING, "File: %s, block %u, checksum is not enabled. "
1505+
"Page is from future: pageLSN %X/%X stopLSN %X/%X",
15061506
file->path, blknum, (uint32) (lsn >> 32), (uint32) lsn,
15071507
(uint32) (stop_lsn >> 32), (uint32) stop_lsn);
15081508
else
@@ -1515,8 +1515,8 @@ validate_one_page(Page page, pgFile *file,
15151515
lsn = PageXLogRecPtrGet(phdr->pd_lsn);
15161516

15171517
if (lsn > stop_lsn)
1518-
elog(WARNING, "File: %s, block %u, checksum is correct."
1519-
"page is from future: pageLSN %X/%X stopLSN %X/%X",
1518+
elog(WARNING, "File: %s, block %u, checksum is correct. "
1519+
"Page is from future: pageLSN %X/%X stopLSN %X/%X",
15201520
file->path, blknum, (uint32) (lsn >> 32), (uint32) lsn,
15211521
(uint32) (stop_lsn >> 32), (uint32) stop_lsn);
15221522
else

0 commit comments

Comments
 (0)