diff options
author | Amit Kapila <akapila@postgresql.org> | 2020-05-05 08:00:53 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2020-05-05 08:00:53 +0530 |
commit | 69bfaf2e1de49de76d7dec1c45511932a5ef502b (patch) | |
tree | e9ff414948222324edbb33f0f603ee4800e218bd /doc/src | |
parent | 5545b69ae65f27ba1f4ceaf24486e98c186e9412 (diff) | |
download | postgresql-69bfaf2e1de49de76d7dec1c45511932a5ef502b.tar.gz postgresql-69bfaf2e1de49de76d7dec1c45511932a5ef502b.zip |
Change the display of WAL usage statistics in Explain.
In commit 33e05f89c5, we have added the option to display WAL usage
statistics in Explain and auto_explain. The display format used two spaces
between each field which is inconsistent with Buffer usage statistics which
is using one space between each field. Change the format to make WAL usage
statistics consistent with Buffer usage statistics.
This commit also changed the usage of "full page writes" to
"full page images" for WAL usage statistics to make it consistent with
other parts of code and docs.
Author: Julien Rouhaud, Amit Kapila
Reviewed-by: Justin Pryzby, Kyotaro Horiguchi and Amit Kapila
Discussion: https://postgr.es/m/CAB-hujrP8ZfUkvL5OYETipQwA=e3n7oqHFU=4ZLxWS_Cza3kQQ@mail.gmail.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/pgstatstatements.sgml | 4 | ||||
-rw-r--r-- | doc/src/sgml/ref/explain.sgml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/pgstatstatements.sgml b/doc/src/sgml/pgstatstatements.sgml index 2120fb4c3f6..b1d5f3d1dcb 100644 --- a/doc/src/sgml/pgstatstatements.sgml +++ b/doc/src/sgml/pgstatstatements.sgml @@ -283,11 +283,11 @@ </row> <row> - <entry><structfield>wal_fpw</structfield></entry> + <entry><structfield>wal_fpi</structfield></entry> <entry><type>bigint</type></entry> <entry></entry> <entry> - Total number of WAL full page writes generated by the statement + Total number of WAL full page images generated by the statement </entry> </row> diff --git a/doc/src/sgml/ref/explain.sgml b/doc/src/sgml/ref/explain.sgml index aedd70a6ad2..c6f333c3c90 100644 --- a/doc/src/sgml/ref/explain.sgml +++ b/doc/src/sgml/ref/explain.sgml @@ -198,8 +198,8 @@ ROLLBACK; <listitem> <para> Include information on WAL record generation. Specifically, include the - number of records, number of full page writes and amount of WAL bytes - generated. In text format, only non-zero values are printed. This + number of records, number of full page images (fpi) and amount of WAL + bytes generated. In text format, only non-zero values are printed. This parameter may only be used when <literal>ANALYZE</literal> is also enabled. It defaults to <literal>FALSE</literal>. </para> |