diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2023-11-15 14:07:00 +0100 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2023-11-15 14:07:00 +0100 |
commit | 83b4326e6098a057d3931619e387d59844e70aed (patch) | |
tree | 10004f589846a83575b3d67617e46641305bb4b0 | |
parent | c21e6e2fd48cdcfe7d01eed243d576c722ef8de5 (diff) | |
download | postgresql-83b4326e6098a057d3931619e387d59844e70aed.tar.gz postgresql-83b4326e6098a057d3931619e387d59844e70aed.zip |
doc: align column order with pg_stat_statements view
Commit 5a3423ad8e mistakenly didn't plac the new columns for JIT
deform counters at the end to match their placement in the view.
Fix by placing the new columns last to be consistent.
Author: Julien Rouhaud <rjuju123@gmail.com>
Discussion: https://postgr.es/m/fuhxmigipmodhq3bah5iddd2ksfinrva75wqjyg2g2e647p4v7@yev2gynrnr5f
-rw-r--r-- | doc/src/sgml/pgstatstatements.sgml | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/doc/src/sgml/pgstatstatements.sgml b/doc/src/sgml/pgstatstatements.sgml index 6c7ca962f81..b66dc7fa30a 100644 --- a/doc/src/sgml/pgstatstatements.sgml +++ b/doc/src/sgml/pgstatstatements.sgml @@ -442,74 +442,74 @@ <row> <entry role="catalog_table_entry"><para role="column_definition"> - <structfield>jit_deform_count</structfield> <type>bigint</type> + <structfield>jit_inlining_count</structfield> <type>bigint</type> </para> <para> - Total number of tuple deform functions JIT-compiled by the statement + Number of times functions have been inlined </para></entry> </row> <row> <entry role="catalog_table_entry"><para role="column_definition"> - <structfield>jit_deform_time</structfield> <type>double precision</type> + <structfield>jit_inlining_time</structfield> <type>double precision</type> </para> <para> - Total time spent by the statement on JIT-compiling tuple deform - functions, in milliseconds + Total time spent by the statement on inlining functions, in milliseconds </para></entry> </row> <row> <entry role="catalog_table_entry"><para role="column_definition"> - <structfield>jit_inlining_count</structfield> <type>bigint</type> + <structfield>jit_optimization_count</structfield> <type>bigint</type> </para> <para> - Number of times functions have been inlined + Number of times the statement has been optimized </para></entry> </row> <row> <entry role="catalog_table_entry"><para role="column_definition"> - <structfield>jit_inlining_time</structfield> <type>double precision</type> + <structfield>jit_optimization_time</structfield> <type>double precision</type> </para> <para> - Total time spent by the statement on inlining functions, in milliseconds + Total time spent by the statement on optimizing, in milliseconds </para></entry> </row> <row> <entry role="catalog_table_entry"><para role="column_definition"> - <structfield>jit_optimization_count</structfield> <type>bigint</type> + <structfield>jit_emission_count</structfield> <type>bigint</type> </para> <para> - Number of times the statement has been optimized + Number of times code has been emitted </para></entry> </row> <row> <entry role="catalog_table_entry"><para role="column_definition"> - <structfield>jit_optimization_time</structfield> <type>double precision</type> + <structfield>jit_emission_time</structfield> <type>double precision</type> </para> <para> - Total time spent by the statement on optimizing, in milliseconds + Total time spent by the statement on emitting code, in milliseconds </para></entry> </row> <row> <entry role="catalog_table_entry"><para role="column_definition"> - <structfield>jit_emission_count</structfield> <type>bigint</type> + <structfield>jit_deform_count</structfield> <type>bigint</type> </para> <para> - Number of times code has been emitted + Total number of tuple deform functions JIT-compiled by the statement </para></entry> </row> <row> <entry role="catalog_table_entry"><para role="column_definition"> - <structfield>jit_emission_time</structfield> <type>double precision</type> + <structfield>jit_deform_time</structfield> <type>double precision</type> </para> <para> - Total time spent by the statement on emitting code, in milliseconds + Total time spent by the statement on JIT-compiling tuple deform + functions, in milliseconds </para></entry> </row> </tbody> |