mirror of
https://github.com/postgres/postgres.git
synced 2025-05-05 09:19:17 +03:00
Fix message punctuation according to style guide
This commit is contained in:
parent
5ea47e8f2a
commit
867bc6849f
@ -748,20 +748,20 @@ ValidXLogPageHeader(XLogReaderState *state, XLogRecPtr recptr,
|
|||||||
snprintf(sysident_str, sizeof(sysident_str), UINT64_FORMAT,
|
snprintf(sysident_str, sizeof(sysident_str), UINT64_FORMAT,
|
||||||
state->system_identifier);
|
state->system_identifier);
|
||||||
report_invalid_record(state,
|
report_invalid_record(state,
|
||||||
"WAL file is from different database system: WAL file database system identifier is %s, pg_control database system identifier is %s.",
|
"WAL file is from different database system: WAL file database system identifier is %s, pg_control database system identifier is %s",
|
||||||
fhdrident_str, sysident_str);
|
fhdrident_str, sysident_str);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
else if (longhdr->xlp_seg_size != XLogSegSize)
|
else if (longhdr->xlp_seg_size != XLogSegSize)
|
||||||
{
|
{
|
||||||
report_invalid_record(state,
|
report_invalid_record(state,
|
||||||
"WAL file is from different database system: Incorrect XLOG_SEG_SIZE in page header.");
|
"WAL file is from different database system: incorrect XLOG_SEG_SIZE in page header");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
else if (longhdr->xlp_xlog_blcksz != XLOG_BLCKSZ)
|
else if (longhdr->xlp_xlog_blcksz != XLOG_BLCKSZ)
|
||||||
{
|
{
|
||||||
report_invalid_record(state,
|
report_invalid_record(state,
|
||||||
"WAL file is from different database system: Incorrect XLOG_BLCKSZ in page header.");
|
"WAL file is from different database system: incorrect XLOG_BLCKSZ in page header");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user