{
{"enable_incremental_sort", PGC_USERSET, QUERY_TUNING_METHOD,
gettext_noop("Enables the planner's use of incremental sort steps."),
- NULL
+ NULL,
+ GUC_EXPLAIN
},
&enable_incremental_sort,
true,
},
{
{"ssl_passphrase_command_supports_reload", PGC_SIGHUP, CONN_AUTH_SSL,
- gettext_noop("Also use ssl_passphrase_command during server reload."),
+ gettext_noop("Controls whether ssl_passphrase_command is called during server reload."),
NULL
},
&ssl_passphrase_command_supports_reload,
{
{"commit_siblings", PGC_USERSET, WAL_SETTINGS,
- gettext_noop("Sets the minimum concurrent open transactions before performing "
- "commit_delay."),
+ gettext_noop("Sets the minimum number of concurrent open transactions "
+ "required before performing commit_delay."),
NULL
},
&CommitSiblings,
},
&autovacuum_freeze_max_age,
- /*
- * see pg_resetwal and vacuum_failsafe_age if you change the
- * upper-limit value.
- */
+ /* see vacuum_failsafe_age if you change the upper-limit value. */
200000000, 100000, 2000000000,
NULL, NULL, NULL
},
},
{
- {"ssl_renegotiation_limit", PGC_USERSET, CONN_AUTH_SSL,
+ {"ssl_renegotiation_limit", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
gettext_noop("SSL renegotiation is no longer supported; this can only be 0."),
NULL,
GUC_NO_SHOW_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE,
{
{"compute_query_id", PGC_SUSET, STATS_MONITORING,
- gettext_noop("Compute query identifiers."),
+ gettext_noop("Enables in-core computation of query identifiers."),
NULL
},
&compute_query_id,
{"trace_recovery_messages", PGC_SIGHUP, DEVELOPER_OPTIONS,
gettext_noop("Enables logging of recovery-related debugging information."),
gettext_noop("Each level includes all the levels that follow it. The later"
- " the level, the fewer messages are sent.")
+ " the level, the fewer messages are sent."),
+ GUC_NOT_IN_SAMPLE,
},
&trace_recovery_messages,