Re: BUG #18131: PL/pgSQL: regclass procedure parameter wrongly memoized(?) - Mailing list pgsql-bugs

From Christian Stork
Subject Re: BUG #18131: PL/pgSQL: regclass procedure parameter wrongly memoized(?)
Date
Msg-id CAEkp40_2mobvjrXbPGKTRZEqXPnjOMptqfnSK=uZUA=UUpFKjw@mail.gmail.com
Whole thread Raw
List pgsql-bugs
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

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: BUG #18080: to_tsvector fails for long text input
Next
From: Andrew Dunstan
Date:
Subject: Re: why are null bytes allowed in JSON columns?