Re: [HACKERS] Plan invalidation vs. unnamed prepared statements - Mailing list pgsql-jdbc

From Tom Lane
Subject Re: [HACKERS] Plan invalidation vs. unnamed prepared statements
Date
Msg-id 12575.1173223438@sss.pgh.pa.us
Whole thread Raw
In response to Re: [HACKERS] Plan invalidation vs. unnamed prepared statements  ("Simon Riggs" <simon@2ndquadrant.com>)
Responses Re: [HACKERS] Plan invalidation vs. unnamed prepared statements  (Тимчишин Виталий<tivv@gtech-ua.com>)
List pgsql-jdbc
"Simon Riggs" <simon@2ndquadrant.com> writes:
> On Tue, 2007-03-06 at 12:22 -0500, Tom Lane wrote:
>> A. Just accept the extra overhead, thereby preserving the current
>> behavior of unnamed statements, and gaining the benefit that plan
>> invalidation will work correctly in the few cases where an unnamed
>> statement's plan lasts long enough to need replanning.

> With connection pooling, multiple sessions will execute each statement.
> If we check the cache each time this does seem more expensive for each
> individual session, but we should gain synergy from other similar
> sessions.

It seems fairly unlikely to me that client code would try to share an
unnamed statement across multiple application threads; the entire point
is that it's for one-off queries.

Or did you miss the point that the plan cache is local per-backend?

> ISTM there will be some cases where the current behaviour will not be
> maintained if we implement A exactly. One thing I've not seen mentioned
> is the effect of constants on various plans.

There is none.

            regards, tom lane

pgsql-jdbc by date:

Previous
From: "Simon Riggs"
Date:
Subject: Re: [HACKERS] Plan invalidation vs. unnamed prepared statements
Next
From: "Mike Clements"
Date:
Subject: Re: Fetching generated keys