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

Commit 83b4326

Browse files
doc: align column order with pg_stat_statements view
Commit 5a3423a 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
1 parent c21e6e2 commit 83b4326

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

doc/src/sgml/pgstatstatements.sgml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -442,74 +442,74 @@
442442

443443
<row>
444444
<entry role="catalog_table_entry"><para role="column_definition">
445-
<structfield>jit_deform_count</structfield> <type>bigint</type>
445+
<structfield>jit_inlining_count</structfield> <type>bigint</type>
446446
</para>
447447
<para>
448-
Total number of tuple deform functions JIT-compiled by the statement
448+
Number of times functions have been inlined
449449
</para></entry>
450450
</row>
451451

452452
<row>
453453
<entry role="catalog_table_entry"><para role="column_definition">
454-
<structfield>jit_deform_time</structfield> <type>double precision</type>
454+
<structfield>jit_inlining_time</structfield> <type>double precision</type>
455455
</para>
456456
<para>
457-
Total time spent by the statement on JIT-compiling tuple deform
458-
functions, in milliseconds
457+
Total time spent by the statement on inlining functions, in milliseconds
459458
</para></entry>
460459
</row>
461460

462461
<row>
463462
<entry role="catalog_table_entry"><para role="column_definition">
464-
<structfield>jit_inlining_count</structfield> <type>bigint</type>
463+
<structfield>jit_optimization_count</structfield> <type>bigint</type>
465464
</para>
466465
<para>
467-
Number of times functions have been inlined
466+
Number of times the statement has been optimized
468467
</para></entry>
469468
</row>
470469

471470
<row>
472471
<entry role="catalog_table_entry"><para role="column_definition">
473-
<structfield>jit_inlining_time</structfield> <type>double precision</type>
472+
<structfield>jit_optimization_time</structfield> <type>double precision</type>
474473
</para>
475474
<para>
476-
Total time spent by the statement on inlining functions, in milliseconds
475+
Total time spent by the statement on optimizing, in milliseconds
477476
</para></entry>
478477
</row>
479478

480479
<row>
481480
<entry role="catalog_table_entry"><para role="column_definition">
482-
<structfield>jit_optimization_count</structfield> <type>bigint</type>
481+
<structfield>jit_emission_count</structfield> <type>bigint</type>
483482
</para>
484483
<para>
485-
Number of times the statement has been optimized
484+
Number of times code has been emitted
486485
</para></entry>
487486
</row>
488487

489488
<row>
490489
<entry role="catalog_table_entry"><para role="column_definition">
491-
<structfield>jit_optimization_time</structfield> <type>double precision</type>
490+
<structfield>jit_emission_time</structfield> <type>double precision</type>
492491
</para>
493492
<para>
494-
Total time spent by the statement on optimizing, in milliseconds
493+
Total time spent by the statement on emitting code, in milliseconds
495494
</para></entry>
496495
</row>
497496

498497
<row>
499498
<entry role="catalog_table_entry"><para role="column_definition">
500-
<structfield>jit_emission_count</structfield> <type>bigint</type>
499+
<structfield>jit_deform_count</structfield> <type>bigint</type>
501500
</para>
502501
<para>
503-
Number of times code has been emitted
502+
Total number of tuple deform functions JIT-compiled by the statement
504503
</para></entry>
505504
</row>
506505

507506
<row>
508507
<entry role="catalog_table_entry"><para role="column_definition">
509-
<structfield>jit_emission_time</structfield> <type>double precision</type>
508+
<structfield>jit_deform_time</structfield> <type>double precision</type>
510509
</para>
511510
<para>
512-
Total time spent by the statement on emitting code, in milliseconds
511+
Total time spent by the statement on JIT-compiling tuple deform
512+
functions, in milliseconds
513513
</para></entry>
514514
</row>
515515
</tbody>

0 commit comments

Comments
 (0)