Re: [BUG] pg_stat_statements and extended query protocol

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [BUG] pg_stat_statements and extended query protocol
Дата
Msg-id 1308756.1680576431@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [BUG] pg_stat_statements and extended query protocol  ("Imseih (AWS), Sami" <simseih@amazon.com>)
Ответы Re: [BUG] pg_stat_statements and extended query protocol  ("Imseih (AWS), Sami" <simseih@amazon.com>)
Список pgsql-hackers
"Imseih (AWS), Sami" <simseih@amazon.com> writes:
>> Also, I'm doubtful that counting calls this way is a great idea,
>> which would mean you only need one new counter field not two. The
>> fact that you're having trouble defining what it means certainly
>> suggests that the implementation is out front of the design.

> ISTM you are not in agreement that a call count should be incremented
> after every executorRun, but should only be incremented after
> the portal is closed, at executorEnd. Is that correct?

Right.  That makes the "call count" equal to the number of times the
query is invoked.

> FWIW, The rationale for incrementing calls in executorRun is that calls refers
> to the number of times a client executes a portal, whether partially or to completion.

Why should that be the definition?  Partial execution of a portal
might be something that is happening at the driver level, behind the
user's back.  You can't make rational calculations of, say, plan
time versus execution time if that's how "calls" is measured.

            regards, tom lane



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

Предыдущее
От: "Imseih (AWS), Sami"
Дата:
Сообщение: Re: [BUG] pg_stat_statements and extended query protocol
Следующее
От: tender wang
Дата:
Сообщение: same query but different result on pg16devel and pg15.2