Re: BUG #6707: ERROR: could not open relation with OID

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: BUG #6707: ERROR: could not open relation with OID
Дата
Msg-id 20285.1340769074@sss.pgh.pa.us
обсуждение исходный текст
Ответ на BUG #6707: ERROR: could not open relation with OID  (lifeair@gmail.com)
Ответы Re: BUG #6707: ERROR: could not open relation with OID  ("Greg Sabino Mullane" <greg@turnstep.com>)
Список pgsql-bugs
lifeair@gmail.com writes:
> CREATE OR REPLACE FUNCTION test() RETURNS integer AS
> $BODY$
> DECLARE
>  _r RECORD;
> BEGIN
> CREATE TEMP TABLE test(id int);
> _r := ROW(NULL)::test;
> _r:=NULL;
> DROP TABLE test CASCADE;
> RETURN    1;
> END;
> $BODY$
>   LANGUAGE plpgsql VOLATILE
>   COST 100;

Hmm.  The problem with this is that the DROP TABLE invalidates test's
rowtype, so on a second call the already-compiled "ROW(NULL)::test"
expression refers to a type that no longer exists.

We could fix that by adding datatypes to the set of objects that are
tracked to determine when a cached plan must be invalidated, but I'm
more than a bit hesitant to expend the extra cycles for this, given
the lack of previous complaints and the large number of datatypes
that are mentioned in most plans.

Perhaps it would be good enough to only track types that must be
rowtypes (ie, are mentioned in RowExpr or ConvertRowtypeExpr)?

            regards, tom lane

В списке pgsql-bugs по дате отправления:

Предыдущее
От: digoal@126.com
Дата:
Сообщение: BUG #6708: pgsql_fdw's foreign table cann't used in plpgsql function
Следующее
От: Sachin Srivastava
Дата:
Сообщение: Re: BUG #6705: 32 bit