Re: Plan invalidation vs. unnamed prepared statements

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Simon Riggs" <simon(at)2ndquadrant(dot)com>
Cc: pgsql-hackers(at)postgreSQL(dot)org, pgsql-jdbc(at)postgreSQL(dot)org
Subject: Re: Plan invalidation vs. unnamed prepared statements
Date: 2007-03-06 23:23:58
Message-ID: 12575.1173223438@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-jdbc

"Simon Riggs" <simon(at)2ndquadrant(dot)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

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Gregory Stark 2007-03-06 23:36:39 Re: GIST and TOAST
Previous Message Simon Riggs 2007-03-06 23:04:21 Re: Plan invalidation vs. unnamed prepared statements

Browse pgsql-jdbc by date

  From Date Subject
Next Message Mike Clements 2007-03-06 23:35:10 Re: Fetching generated keys
Previous Message Simon Riggs 2007-03-06 23:04:21 Re: Plan invalidation vs. unnamed prepared statements