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

Christian Stork <cstork+postgresql@gmail.com>

From: Christian Stork <cstork+postgresql@gmail.com>
To: pgsql-bugs@lists.postgresql.org
Date: 2023-09-22T21:32:15Z
Lists: 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

Commits

  1. Collect dependency information for parsed CallStmts.