diff options
author | Michael Paquier | 2022-05-21 08:57:23 +0000 |
---|---|---|
committer | Michael Paquier | 2022-05-21 08:57:23 +0000 |
commit | d1436555f5ab33b1e4d458e9b2722e5eaf0548f6 (patch) | |
tree | 7989fbdaa5677971b049c83d345923fa8c233ff2 | |
parent | eaa5ebe046c4f247d843bdfd36da4c28be9dbfab (diff) |
doc: Fix description of the JIT time fields in pg_stat_statements
The four fields tracking the time spent by queries for JIT operations
added in 57d6aea were listed as having bigint as data type, but these
are of type double precision.
Author: Noriyoshi Shinoda
Reviewed-by: Nathan Bossart
Discussion: https://postgr.es/m/DM4PR84MB1734375E63148AADC6A1E6B4EED39@DM4PR84MB1734.NAMPRD84.PROD.OUTLOOK.COM
-rw-r--r-- | doc/src/sgml/pgstatstatements.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/pgstatstatements.sgml b/doc/src/sgml/pgstatstatements.sgml index 215419f23c..ecf6cd6bf3 100644 --- a/doc/src/sgml/pgstatstatements.sgml +++ b/doc/src/sgml/pgstatstatements.sgml @@ -413,7 +413,7 @@ <row> <entry role="catalog_table_entry"><para role="column_definition"> - <structfield>jit_generation_time</structfield> <type>bigint</type> + <structfield>jit_generation_time</structfield> <type>double precision</type> </para> <para> Total time spent by the statement on generating JIT code, in milliseconds @@ -431,7 +431,7 @@ <row> <entry role="catalog_table_entry"><para role="column_definition"> - <structfield>jit_inlining_time</structfield> <type>bigint</type> + <structfield>jit_inlining_time</structfield> <type>double precision</type> </para> <para> Total time spent by the statement on inlining functions, in milliseconds @@ -449,7 +449,7 @@ <row> <entry role="catalog_table_entry"><para role="column_definition"> - <structfield>jit_optimization_time</structfield> <type>bigint</type> + <structfield>jit_optimization_time</structfield> <type>double precision</type> </para> <para> Total time spent by the statement on optimizing, in milliseconds @@ -467,7 +467,7 @@ <row> <entry role="catalog_table_entry"><para role="column_definition"> - <structfield>jit_emission_time</structfield> <type>bigint</type> + <structfield>jit_emission_time</structfield> <type>double precision</type> </para> <para> Total time spent by the statement on emitting code, in milliseconds |