diff options
author | Fujii Masao <fujii@postgresql.org> | 2021-07-07 21:54:47 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2021-07-07 21:55:14 +0900 |
commit | e48f2afee631be42739e50fbefd758503e8dcf82 (patch) | |
tree | 69afef7f3aff432782a34066cc0f54a9d74f4bd1 | |
parent | 4173477b3841749ce491c77b54a5940f6f3e9eb6 (diff) | |
download | postgresql-e48f2afee631be42739e50fbefd758503e8dcf82.tar.gz postgresql-e48f2afee631be42739e50fbefd758503e8dcf82.zip |
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
-rw-r--r-- | doc/src/sgml/pgstatstatements.sgml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/sgml/pgstatstatements.sgml b/doc/src/sgml/pgstatstatements.sgml index f20b255d4e4..1696a6e6369 100644 --- a/doc/src/sgml/pgstatstatements.sgml +++ b/doc/src/sgml/pgstatstatements.sgml @@ -696,8 +696,9 @@ <varname>pg_stat_statements.track_planning</varname> controls whether planning operations and duration are tracked by the module. Enabling this parameter may incur a noticeable performance penalty, - especially when a fewer kinds of queries are executed on many - concurrent connections. + especially when statements with identical query structure are executed + 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>. Only superusers can change this setting. </para> |