File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ be_tls_init(bool isServerStart)
224
224
{
225
225
ereport (isServerStart ? FATAL : LOG ,
226
226
/*- translator: first %s is a GUC option name, second %s is its value */
227
- (errmsg ("%s setting \"%s\" not supported by this build" ,
227
+ (errmsg ("\"%s\" setting \"%s\" not supported by this build" ,
228
228
"ssl_max_protocol_version" ,
229
229
GetConfigOption ("ssl_max_protocol_version" ,
230
230
false, false))));
Original file line number Diff line number Diff line change @@ -928,7 +928,7 @@ RegisterBackgroundWorker(BackgroundWorker *worker)
928
928
"Up to %d background workers can be registered with the current settings." ,
929
929
max_worker_processes ,
930
930
max_worker_processes ),
931
- errhint ("Consider increasing the configuration parameter max_worker_processes." )));
931
+ errhint ("Consider increasing the configuration parameter \" max_worker_processes\" ." )));
932
932
return ;
933
933
}
934
934
Original file line number Diff line number Diff line change @@ -895,7 +895,7 @@ HandlePgArchInterrupts(void)
895
895
*/
896
896
ereport (LOG ,
897
897
(errmsg ("restarting archiver process because value of "
898
- "archive_library was changed" )));
898
+ "\" archive_library\" was changed" )));
899
899
900
900
proc_exit (0 );
901
901
}
Original file line number Diff line number Diff line change @@ -1047,7 +1047,7 @@ ValidateSlotSyncParams(int elevel)
1047
1047
if (wal_level < WAL_LEVEL_LOGICAL )
1048
1048
ereport (ERROR ,
1049
1049
errcode (ERRCODE_INVALID_PARAMETER_VALUE ),
1050
- errmsg ("slot synchronization requires wal_level >= \"logical\"" ));
1050
+ errmsg ("slot synchronization requires \" wal_level\" >= \"logical\"" ));
1051
1051
1052
1052
/*
1053
1053
* A physical replication slot(primary_slot_name) is required on the
Original file line number Diff line number Diff line change @@ -1114,7 +1114,7 @@ struct config_bool ConfigureNamesBool[] =
1114
1114
gettext_noop ("Continues processing past damaged page headers." ),
1115
1115
gettext_noop ("Detection of a damaged page header normally causes PostgreSQL to "
1116
1116
"report an error, aborting the current transaction. Setting "
1117
- "\"zero_damaged_page \" to true causes the system to instead report a "
1117
+ "\"zero_damaged_pages \" to true causes the system to instead report a "
1118
1118
"warning, zero out the damaged page, and continue processing. This "
1119
1119
"behavior will destroy data, namely all the rows on the damaged page." ),
1120
1120
GUC_NOT_IN_SAMPLE
You can’t perform that action at this time.
0 commit comments