From 83b4326e6098a057d3931619e387d59844e70aed Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Wed, 15 Nov 2023 14:07:00 +0100 Subject: [PATCH] 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 Discussion: https://postgr.es/m/fuhxmigipmodhq3bah5iddd2ksfinrva75wqjyg2g2e647p4v7@yev2gynrnr5f --- doc/src/sgml/pgstatstatements.sgml | 38 +++++++++++++++--------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/doc/src/sgml/pgstatstatements.sgml b/doc/src/sgml/pgstatstatements.sgml index 6c7ca962f8..b66dc7fa30 100644 --- a/doc/src/sgml/pgstatstatements.sgml +++ b/doc/src/sgml/pgstatstatements.sgml @@ -440,25 +440,6 @@ - - - jit_deform_count bigint - - - Total number of tuple deform functions JIT-compiled by the statement - - - - - - jit_deform_time double precision - - - Total time spent by the statement on JIT-compiling tuple deform - functions, in milliseconds - - - jit_inlining_count bigint @@ -512,6 +493,25 @@ Total time spent by the statement on emitting code, in milliseconds + + + + jit_deform_count bigint + + + Total number of tuple deform functions JIT-compiled by the statement + + + + + + jit_deform_time double precision + + + Total time spent by the statement on JIT-compiling tuple deform + functions, in milliseconds + +