diff options
author | Fujii Masao <fujii@postgresql.org> | 2025-06-25 09:01:13 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2025-06-25 09:01:13 +0900 |
commit | a9c2bde9295574fc79ce0dea1a2b481c8804c1a5 (patch) | |
tree | d1ac2c6b805347c0842d10e805347b8c3c8d8755 /doc/src | |
parent | 84c4e10e130f411a89a2f9fd9184075ef02b0eaf (diff) | |
download | postgresql-a9c2bde9295574fc79ce0dea1a2b481c8804c1a5.tar.gz postgresql-a9c2bde9295574fc79ce0dea1a2b481c8804c1a5.zip |
doc: Mention ANALYZE VERBOSE in track_cost_delay_timing description.
The documentation for track_cost_delay_timing describes where cost-based
vacuum delay timing information is displayed when the setting is enabled.
While this information is also shown in the output of ANALYZE VERBOSE,
that was previously omitted from the list.
This commit updates the documentation to include ANALYZE VERBOSE in the list,
clarifying that it also reports cost-based delay timing information.
Author: Fujii Masao <masao.fujii@gmail.com>
Discussion: https://postgr.es/m/e95c899a-2aeb-45b7-8fd3-7a27dcdb475b@oss.nttdata.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/config.sgml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 0ac519706a4..f4ba58bb5c3 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -8602,7 +8602,8 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; timing information is displayed in <link linkend="vacuum-progress-reporting"><structname>pg_stat_progress_vacuum</structname></link>, <link linkend="analyze-progress-reporting"><structname>pg_stat_progress_analyze</structname></link>, - in the output of <xref linkend="sql-vacuum"/> when the + in the output of <xref linkend="sql-vacuum"/> and + <xref linkend="sql-analyze"/> when the <literal>VERBOSE</literal> option is used, and by autovacuum for auto-vacuums and auto-analyzes when <xref linkend="guc-log-autovacuum-min-duration"/> is set. |