Commit e48f2afe authored by Fujii Masao's avatar Fujii Masao

doc: Fix description about pg_stat_statements.track_planning.

This commit fixes wrong wording like "a fewer kinds"
in the description about track_planning option.

Back-patch to v13 where pg_stat_statements.track_planning was added.

Author: Justin Pryzby
Reviewed-by: Julien Rouhaud, Fujii Masao
Discussion: https://postgr.es/m/20210418233615.GB7256@telsasoft.com
parent 4173477b
...@@ -696,8 +696,9 @@ ...@@ -696,8 +696,9 @@
<varname>pg_stat_statements.track_planning</varname> controls whether <varname>pg_stat_statements.track_planning</varname> controls whether
planning operations and duration are tracked by the module. planning operations and duration are tracked by the module.
Enabling this parameter may incur a noticeable performance penalty, Enabling this parameter may incur a noticeable performance penalty,
especially when a fewer kinds of queries are executed on many especially when statements with identical query structure are executed
concurrent connections. by many concurrent connections which compete to update a small number of
<structname>pg_stat_statements</structname> entries.
The default value is <literal>off</literal>. The default value is <literal>off</literal>.
Only superusers can change this setting. Only superusers can change this setting.
</para> </para>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment