Skip to content

Commit b1a1f77

Browse files
committed
doc: Fix description of some GUCs in docs and postgresql.conf.sample
The following parameters have been imprecise, or incorrect, about their description (PGC_POSTMASTER or PGC_SIGHUP): - autovacuum_work_mem (docs, as of 9.6~) - huge_page_size (docs, as of 14~) - max_logical_replication_workers (docs, as of 10~) - max_sync_workers_per_subscription (docs, as of 10~) - min_dynamic_shared_memory (docs, as of 14~) - recovery_init_sync_method (postgresql.conf.sample, as of 14~) - remove_temp_files_after_crash (docs, as of 14~) - restart_after_crash (docs, as of 9.6~) - ssl_min_protocol_version (docs, as of 12~) - ssl_max_protocol_version (docs, as of 12~) This commit adjusts the description of all these parameters to be more consistent with the practice used for the others. Revewed-by: Justin Pryzby Discussion: https://postgr.es/m/YK2ltuLpe+FbRXzA@paquier.xyz Backpatch-through: 9.6
1 parent 96918b7 commit b1a1f77

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

doc/src/sgml/config.sgml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1633,6 +1633,9 @@ include_dir 'conf.d'
16331633
the value of <xref linkend="guc-maintenance-work-mem"/> should
16341634
be used instead. The setting has no effect on the behavior of
16351635
<command>VACUUM</command> when run in other contexts.
1636+
This parameter can only be set in the
1637+
<filename>postgresql.conf</filename> file or on the server command
1638+
line.
16361639
</para>
16371640
</listitem>
16381641
</varlistentry>
@@ -3692,7 +3695,8 @@ ANY <replaceable class="parameter">num_sync</replaceable> ( <replaceable class="
36923695
<varname>max_worker_processes</varname>.
36933696
</para>
36943697
<para>
3695-
The default value is 4.
3698+
The default value is 4. This parameter can only be set at server
3699+
start.
36963700
</para>
36973701
</listitem>
36983702
</varlistentry>
@@ -3717,7 +3721,9 @@ ANY <replaceable class="parameter">num_sync</replaceable> ( <replaceable class="
37173721
<varname>max_logical_replication_workers</varname>.
37183722
</para>
37193723
<para>
3720-
The default value is 2.
3724+
The default value is 2. This parameter can only be set in the
3725+
<filename>postgresql.conf</filename> file or on the server command
3726+
line.
37213727
</para>
37223728
</listitem>
37233729
</varlistentry>
@@ -8261,6 +8267,11 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
82618267
useful to disable the restart so that the clusterware can gain
82628268
control and take any actions it deems appropriate.
82638269
</para>
8270+
8271+
<para>
8272+
This parameter can only be set in the <filename>postgresql.conf</filename>
8273+
file or on the server command line.
8274+
</para>
82648275
</listitem>
82658276
</varlistentry>
82668277

0 commit comments

Comments
 (0)