mirror of
https://github.com/postgres/postgres.git
synced 2025-04-29 13:56:47 +03:00
A few follow-up fixes for GUC name quoting
Fixups for 17974ec259: Some messages were missed (and some were new since the patch was originally proposed), and there was a typo introduced.
This commit is contained in:
parent
17974ec259
commit
e9b7aee272
@ -224,7 +224,7 @@ be_tls_init(bool isServerStart)
|
|||||||
{
|
{
|
||||||
ereport(isServerStart ? FATAL : LOG,
|
ereport(isServerStart ? FATAL : LOG,
|
||||||
/*- translator: first %s is a GUC option name, second %s is its value */
|
/*- translator: first %s is a GUC option name, second %s is its value */
|
||||||
(errmsg("%s setting \"%s\" not supported by this build",
|
(errmsg("\"%s\" setting \"%s\" not supported by this build",
|
||||||
"ssl_max_protocol_version",
|
"ssl_max_protocol_version",
|
||||||
GetConfigOption("ssl_max_protocol_version",
|
GetConfigOption("ssl_max_protocol_version",
|
||||||
false, false))));
|
false, false))));
|
||||||
|
@ -928,7 +928,7 @@ RegisterBackgroundWorker(BackgroundWorker *worker)
|
|||||||
"Up to %d background workers can be registered with the current settings.",
|
"Up to %d background workers can be registered with the current settings.",
|
||||||
max_worker_processes,
|
max_worker_processes,
|
||||||
max_worker_processes),
|
max_worker_processes),
|
||||||
errhint("Consider increasing the configuration parameter max_worker_processes.")));
|
errhint("Consider increasing the configuration parameter \"max_worker_processes\".")));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -895,7 +895,7 @@ HandlePgArchInterrupts(void)
|
|||||||
*/
|
*/
|
||||||
ereport(LOG,
|
ereport(LOG,
|
||||||
(errmsg("restarting archiver process because value of "
|
(errmsg("restarting archiver process because value of "
|
||||||
"archive_library was changed")));
|
"\"archive_library\" was changed")));
|
||||||
|
|
||||||
proc_exit(0);
|
proc_exit(0);
|
||||||
}
|
}
|
||||||
|
@ -1047,7 +1047,7 @@ ValidateSlotSyncParams(int elevel)
|
|||||||
if (wal_level < WAL_LEVEL_LOGICAL)
|
if (wal_level < WAL_LEVEL_LOGICAL)
|
||||||
ereport(ERROR,
|
ereport(ERROR,
|
||||||
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
||||||
errmsg("slot synchronization requires wal_level >= \"logical\""));
|
errmsg("slot synchronization requires \"wal_level\" >= \"logical\""));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* A physical replication slot(primary_slot_name) is required on the
|
* A physical replication slot(primary_slot_name) is required on the
|
||||||
|
@ -1114,7 +1114,7 @@ struct config_bool ConfigureNamesBool[] =
|
|||||||
gettext_noop("Continues processing past damaged page headers."),
|
gettext_noop("Continues processing past damaged page headers."),
|
||||||
gettext_noop("Detection of a damaged page header normally causes PostgreSQL to "
|
gettext_noop("Detection of a damaged page header normally causes PostgreSQL to "
|
||||||
"report an error, aborting the current transaction. Setting "
|
"report an error, aborting the current transaction. Setting "
|
||||||
"\"zero_damaged_page\" to true causes the system to instead report a "
|
"\"zero_damaged_pages\" to true causes the system to instead report a "
|
||||||
"warning, zero out the damaged page, and continue processing. This "
|
"warning, zero out the damaged page, and continue processing. This "
|
||||||
"behavior will destroy data, namely all the rows on the damaged page."),
|
"behavior will destroy data, namely all the rows on the damaged page."),
|
||||||
GUC_NOT_IN_SAMPLE
|
GUC_NOT_IN_SAMPLE
|
||||||
|
Loading…
x
Reference in New Issue
Block a user