life...@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 -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs