Re: [BUG] pg_stat_statements and extended query protocol - Mailing list pgsql-hackers

From Tom Lane
Subject Re: [BUG] pg_stat_statements and extended query protocol
Date
Msg-id 1308756.1680576431@sss.pgh.pa.us
Whole thread Raw
In response to Re: [BUG] pg_stat_statements and extended query protocol  ("Imseih (AWS), Sami" <simseih@amazon.com>)
Responses Re: [BUG] pg_stat_statements and extended query protocol
List 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 by date:

Previous
From: "Imseih (AWS), Sami"
Date:
Subject: Re: [BUG] pg_stat_statements and extended query protocol
Next
From: tender wang
Date:
Subject: same query but different result on pg16devel and pg15.2