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

From Tom Lane
Subject Re: Prepared statements fail after schema changes with surprising error
Date
Msg-id 23687.1358878921@sss.pgh.pa.us
Whole thread Raw
In response to Re: Prepared statements fail after schema changes with surprising error  (Dimitri Fontaine <dimitri@2ndQuadrant.fr>)
List pgsql-hackers
Dimitri Fontaine <dimitri@2ndQuadrant.fr> writes:
> 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?

It does not; see my reply to Robert.
        regards, tom lane



pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: Prepared statements fail after schema changes with surprising error
Next
From: Stephen Frost
Date:
Subject: Re: Prepared statements fail after schema changes with surprising error