Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d143655

Browse files
committed
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
1 parent eaa5ebe commit d143655

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/src/sgml/pgstatstatements.sgml

+4-4
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@
413413

414414
<row>
415415
<entry role="catalog_table_entry"><para role="column_definition">
416-
<structfield>jit_generation_time</structfield> <type>bigint</type>
416+
<structfield>jit_generation_time</structfield> <type>double precision</type>
417417
</para>
418418
<para>
419419
Total time spent by the statement on generating JIT code, in milliseconds
@@ -431,7 +431,7 @@
431431

432432
<row>
433433
<entry role="catalog_table_entry"><para role="column_definition">
434-
<structfield>jit_inlining_time</structfield> <type>bigint</type>
434+
<structfield>jit_inlining_time</structfield> <type>double precision</type>
435435
</para>
436436
<para>
437437
Total time spent by the statement on inlining functions, in milliseconds
@@ -449,7 +449,7 @@
449449

450450
<row>
451451
<entry role="catalog_table_entry"><para role="column_definition">
452-
<structfield>jit_optimization_time</structfield> <type>bigint</type>
452+
<structfield>jit_optimization_time</structfield> <type>double precision</type>
453453
</para>
454454
<para>
455455
Total time spent by the statement on optimizing, in milliseconds
@@ -467,7 +467,7 @@
467467

468468
<row>
469469
<entry role="catalog_table_entry"><para role="column_definition">
470-
<structfield>jit_emission_time</structfield> <type>bigint</type>
470+
<structfield>jit_emission_time</structfield> <type>double precision</type>
471471
</para>
472472
<para>
473473
Total time spent by the statement on emitting code, in milliseconds

0 commit comments

Comments
 (0)