doc: align column order with pg_stat_statements view
authorDaniel Gustafsson
Wed, 15 Nov 2023 13:07:00 +0000 (14:07 +0100)
committerDaniel Gustafsson
Wed, 15 Nov 2023 13:07:00 +0000 (14:07 +0100)
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 
Discussion: https://postgr.es/m/fuhxmigipmodhq3bah5iddd2ksfinrva75wqjyg2g2e647p4v7@yev2gynrnr5f

doc/src/sgml/pgstatstatements.sgml

index 6c7ca962f817bac4d39ad58368172745b8b2c952..b66dc7fa30a0e53f7b75da654abe0a20fb0a5618 100644 (file)
 
      
       
-       jit_deform_count bigint
+       jit_inlining_count bigint
       
       
-       Total number of tuple deform functions JIT-compiled by the statement
+       Number of times functions have been inlined
       
      
 
      
       
-       jit_deform_time double precision
+       jit_inlining_time double precision
       
       
-        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
       
      
 
      
       
-       jit_inlining_count bigint
+       jit_optimization_count bigint
       
       
-       Number of times functions have been inlined
+       Number of times the statement has been optimized
       
      
 
      
       
-       jit_inlining_time double precision
+       jit_optimization_time double precision
       
       
-       Total time spent by the statement on inlining functions, in milliseconds
+       Total time spent by the statement on optimizing, in milliseconds
       
      
 
      
       
-       jit_optimization_count bigint
+       jit_emission_count bigint
       
       
-       Number of times the statement has been optimized
+       Number of times code has been emitted
       
      
 
      
       
-       jit_optimization_time double precision
+       jit_emission_time double precision
       
       
-       Total time spent by the statement on optimizing, in milliseconds
+       Total time spent by the statement on emitting code, in milliseconds
       
      
 
      
       
-       jit_emission_count bigint
+       jit_deform_count bigint
       
       
-       Number of times code has been emitted
+       Total number of tuple deform functions JIT-compiled by the statement
       
      
 
      
       
-       jit_emission_time double precision
+       jit_deform_time double precision
       
       
-       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