Re: Re: Prepared statements fail after schema changes with surprising error - Mailing list pgsql-hackers

From Dimitri Fontaine
Subject Re: Re: Prepared statements fail after schema changes with surprising error
Date
Msg-id m2d2wxi83p.fsf@2ndQuadrant.fr
Whole thread Raw
In response to Re: Prepared statements fail after schema changes with surprising error  (Andres Freund <andres@2ndquadrant.com>)
List pgsql-hackers
Andres Freund <andres@2ndquadrant.com> writes:
> On 2013-01-22 14:24:26 +0100, Dimitri Fontaine wrote:
>> Tom Lane <tgl@sss.pgh.pa.us> writes:
>> >> DROP SCHEMA public;
>> >> CREATE SCHEMA public;
>> >
>> > changes the OID of schema public, whereas the search_path that's cached
>> > for the cached plan is cached in terms of OIDs.  So while there is a
>> > table named public.z1 at the end of the sequence, it's not in any schema
>> > found in the cached search path.
>> 
>> The DROP SCHEMA should invalidate the cached plan, certainly?
>
> Afaics the error happens during replanning of the invalidated plan.

Oh, replaning with the cached search_path even when the invalidation
came from a DROP SCHEMA, you mean? Do we have enough information to make
that case appart?

Regards,
-- 
Dimitri Fontaine
http://2ndQuadrant.fr     PostgreSQL : Expertise, Formation et Support



pgsql-hackers by date:

Previous
From: Thom Brown
Date:
Subject: Re: Event Triggers: adding information
Next
From: Fujii Masao
Date:
Subject: Re: Re: Proposal for Allow postgresql.conf values to be changed via SQL [review]