Обсуждение: pgsql: Fix using injection points at backend startup in EXEC_BACKEND mo

Поиск
Список
Период
Сортировка

pgsql: Fix using injection points at backend startup in EXEC_BACKEND mo

От
Heikki Linnakangas
Дата:
Fix using injection points at backend startup in EXEC_BACKEND mode

Commit 86db52a506 changed the locking of injection points to use only
atomic ops and spinlocks, to make it possible to define injection
points in processes that don't have a PGPROC entry (yet). However, it
didn't work in EXEC_BACKEND mode, because the pointer to shared memory
area was not initialized until the process "attaches" to all the
shared memory structs. To fix, pass the pointer to the child process
along with other global variables that need to be set up early.

Backpatch-through: 17

Branch
------
REL_17_STABLE

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

Modified Files
--------------
src/backend/postmaster/launch_backend.c  | 12 ++++++++++++
src/backend/utils/misc/injection_point.c |  2 +-
src/include/utils/injection_point.h      |  4 ++++
3 files changed, 17 insertions(+), 1 deletion(-)