summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rowley <drowley@postgresql.org>2022-04-13 21:29:35 +1200
committerDavid Rowley <drowley@postgresql.org>2022-04-13 21:29:35 +1200
commitea669b8088380cc0bc7c48ab8581ea5fba1c5b4f (patch)
treeaf8e21b075180214af1a4b8d8ecef1a280a8de5c
parente286be5d05311ec060a4359fcbc53eb98b914d42 (diff)
Docs: wording improvement for compute_query_id = regress
It's more accurate to say that the query identifier is not shown when compute_query_id = regress rather than to say it is hidden. This change (ebf6c5249) appeared in v14, so it makes sense to backpatch this small adjustment to keep the documents consistent between v14 and master. Author: Justin Pryzby Discussion: https://postgr.es/m/20220411020336.GB26620@telsasoft.com Backpatch-through: 14, where compute_query_id = regress was added
-rw-r--r--doc/src/sgml/config.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index 18cf72db051..b6ad68acc52 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -7684,8 +7684,8 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
which lets modules such as <xref linkend="pgstatstatements"/>
automatically enable it, and <literal>regress</literal> which
has the same effect as <literal>auto</literal>, except that the
- query identifier is hidden in the <literal>EXPLAIN</literal> output
- to facilitate automated regression testing.
+ query identifier is not shown in the <literal>EXPLAIN</literal> output
+ in order to facilitate automated regression testing.
The default is <literal>auto</literal>.
</para>
<note>