Thread: Re: BUG #18131: PL/pgSQL: regclass procedure parameter wrongly memoized(?)

Re: BUG #18131: PL/pgSQL: regclass procedure parameter wrongly memoized(?)

From
Christian Stork
Date:
I forgot to mention that the problem disappears when

    call callee('table_name');

is replaced by

    table_oid = 'table_name'::regclass;
    call callee(table_oid);


-Chris