diff options
author | Michael Paquier <michael@paquier.xyz> | 2022-08-09 20:01:44 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2022-08-09 20:01:44 +0900 |
commit | 0b039e3a8489c08ec61b4d40382047c389af91ad (patch) | |
tree | 85dce75e0cd4f0100387aafa1012adb1aa635c47 /doc/src | |
parent | ffbfde4c87725c5342aa0727ed61c5c3c7c0cb39 (diff) | |
download | postgresql-0b039e3a8489c08ec61b4d40382047c389af91ad.tar.gz postgresql-0b039e3a8489c08ec61b4d40382047c389af91ad.zip |
Fix some inconsistencies with GUC categories
This commit addresses a few things around GUCs:
- The TCP-related parameters (the four tcp_keepalives_* and
client_connection_check_interval are listed in postgresql.conf.sample in
a subsection called "TCP settings" of "CONNECTIONS AND AUTHENTICATION",
but they did not have their own group name in guc.c.
- enable_group_by_reordering, stats_fetch_consistency and
recovery_prefetch had an inconsistent description, missing a dot at the
end.
- In postgresql.conf.sample, "Process title" should not have a section
of its own, but it should be a subsection of "REPORTING AND LOGGING".
This impacts the contents of pg_settings, which could be seen as a
compatibility break, so no backpatch is done. This is similar to the
cleanup done in a55a984.
Author: Shinya Kato
Discussion: https://postgr.es/m/5e0c9c608624eafbba910c344282cb14@oss.nttdata.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/config.sgml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index e2d728e0c4f..2522f4c8c57 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -896,6 +896,13 @@ include_dir 'conf.d' </para> </listitem> </varlistentry> + </variablelist> + </sect2> + + <sect2 id="runtime-config-tcp-settings"> + <title>TCP Settings</title> + + <variablelist> <varlistentry id="guc-tcp-keepalives-idle" xreflabel="tcp_keepalives_idle"> <term><varname>tcp_keepalives_idle</varname> (<type>integer</type>) |