Re: [RFC] Add jit deform_counter

Поиск
Список
Период
Сортировка
От Dmitry Dolgov
Тема Re: [RFC] Add jit deform_counter
Дата
Msg-id 20230814143642.4hczqd52maupbant@erthalion.local
обсуждение исходный текст
Ответ на Re: [RFC] Add jit deform_counter  (Dmitry Dolgov <9erthalion6@gmail.com>)
Ответы Re: [RFC] Add jit deform_counter  (Daniel Gustafsson <daniel@yesql.se>)
Список pgsql-hackers
> On Wed, Jul 19, 2023 at 05:18:29PM +0200, Dmitry Dolgov wrote:
> > On Tue, Jul 18, 2023, 3:32 PM Daniel Gustafsson <daniel@yesql.se> wrote
> >> Here is the patch with the proposed variation.
> >
> > This version still leaves non-text EXPLAIN formats with timing which
> doesn't
> > add up.  Below are JSON and XML examples:
>
> Good point. For the structured formats it should be represented via a nested
> level. I'll try to do this and other proposed changes as soon as I'll get
> back.

And here is it. The json version of EXPLAIN now looks like this:

     "JIT": {
       [...]
       "Timing": {
         "Generation": {
           "Deform": 0.000,
           "Total": 0.205
         },
         "Inlining": 0.065,
         "Optimization": 2.465,
         "Emission": 2.337,
         "Total": 5.072
       }
     },


Вложения

В списке pgsql-hackers по дате отправления:

Предыдущее
От: Yugo NAGATA
Дата:
Сообщение: Re: pgbench: allow to exit immediately when any client is aborted
Следующее
От: Yugo NAGATA
Дата:
Сообщение: Re: Make psql's qeury canceling test simple by using signal() routine of IPC::Run