pgsql: Don't corrupt plpython's "TD" dictionary in a recursive trigger

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Don't corrupt plpython's "TD" dictionary in a recursive trigger
Дата
Msg-id E1s4T5l-0023uw-1n@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Don't corrupt plpython's "TD" dictionary in a recursive trigger call.

If a plpython-language trigger caused another one to be invoked,
the "TD" dictionary created for the inner one would overwrite the
outer one's "TD" dictionary.  This is more or less the same problem
that 1d2fe56e4 fixed for ordinary functions in plpython, so fix it
the same way, by saving and restoring "TD" during a recursive
invocation.

This fix makes an ABI-incompatible change in struct PLySavedArgs.
I'm not too worried about that because it seems highly unlikely that
any extension is messing with those structs.  We could imagine doing
something weird to preserve nominal ABI compatibility in the back
branches, like keeping the saved TD object in an extra element of
namedargs[].  However, that would only be very nominal compatibility:
if anything *is* touching PLySavedArgs, it would likely do the wrong
thing due to not knowing about the additional value.  So I judge it
not worth the ugliness to do something different there.

(I also changed struct PLyProcedure, but its added field fits
into formerly-padding space, so that should be safe.)

Per bug #18456 from Jacques Combrink.  This bug is very ancient,
so back-patch to all supported branches.

Discussion: https://postgr.es/m/3008982.1714853799@sss.pgh.pa.us

Branch
------
REL_13_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/abe60b6a0d276a073fc3f057498a920cdab906a9

Modified Files
--------------
src/pl/plpython/expected/plpython_trigger.out | 27 +++++++++++++++++++++++++
src/pl/plpython/plpy_exec.c                   | 29 ++++++++++++++++++++++++---
src/pl/plpython/plpy_procedure.c              |  1 +
src/pl/plpython/plpy_procedure.h              |  2 ++
src/pl/plpython/sql/plpython_trigger.sql      | 24 ++++++++++++++++++++++
5 files changed, 80 insertions(+), 3 deletions(-)


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

Предыдущее
От: noreply@postgresql.org
Дата:
Сообщение: pgsql: Tag refs/tags/REL_12_19 was created
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Ensure that "pg_restore -l" reports dependent TOC entries correc