pgsql: Fix using injection points at backend startup in EXEC_BACKEND mo - Mailing list pgsql-committers

From Heikki Linnakangas
Subject pgsql: Fix using injection points at backend startup in EXEC_BACKEND mo
Date
Msg-id E1sXKDm-001IyD-28@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
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(-)


pgsql-committers by date:

Previous
From: Heikki Linnakangas
Date:
Subject: pgsql: Fix fallback behavior when server sends an ERROR early at startu
Next
From: Peter Eisentraut
Date:
Subject: pgsql: pg_createsubscriber: Message style improvements