Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit87c2b51

Browse files
committed
Fix message punctuation according to style guide
1 parent8ab4a6b commit87c2b51

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎src/backend/access/transam/xlogreader.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -748,20 +748,20 @@ ValidXLogPageHeader(XLogReaderState *state, XLogRecPtr recptr,
748748
snprintf(sysident_str,sizeof(sysident_str),UINT64_FORMAT,
749749
state->system_identifier);
750750
report_invalid_record(state,
751-
"WAL file is from different database system: WAL file database system identifier is %s, pg_control database system identifier is %s.",
751+
"WAL file is from different database system: WAL file database system identifier is %s, pg_control database system identifier is %s",
752752
fhdrident_str,sysident_str);
753753
return false;
754754
}
755755
elseif (longhdr->xlp_seg_size!=XLogSegSize)
756756
{
757757
report_invalid_record(state,
758-
"WAL file is from different database system:Incorrect XLOG_SEG_SIZE in page header.");
758+
"WAL file is from different database system:incorrect XLOG_SEG_SIZE in page header");
759759
return false;
760760
}
761761
elseif (longhdr->xlp_xlog_blcksz!=XLOG_BLCKSZ)
762762
{
763763
report_invalid_record(state,
764-
"WAL file is from different database system:Incorrect XLOG_BLCKSZ in page header.");
764+
"WAL file is from different database system:incorrect XLOG_BLCKSZ in page header");
765765
return false;
766766
}
767767
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp