pgsql: Fix assertion failure with replication slot release in single-us - Mailing list pgsql-committers

From Michael Paquier
Subject pgsql: Fix assertion failure with replication slot release in single-us
Date
Msg-id E1uobsJ-000lYU-0e@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix assertion failure with replication slot release in single-user mode

Some replication slot manipulations (logical decoding via SQL,
advancing) were failing an assertion when releasing a slot in
single-user mode, because active_pid was not set in a ReplicationSlot
when its slot is acquired.

ReplicationSlotAcquire() has some logic to be able to work with the
single-user mode.  This commit sets ReplicationSlot->active_pid to
MyProcPid, to let the slot-related logic fall-through, considering the
single process as the one holding the slot.

Some TAP tests are added for various replication slot functions with the
single-user mode, while on it, for slot creation, drop, advancing, copy
and logical decoding with multiple slot types (temporary, physical vs
logical).  These tests are skipped on Windows, as direct calls of
postgres --single would fail on permission failures.  There is no
platform-specific behavior that needs to be checked, so living with this
restriction should be fine.  The CI is OK with that, now let's see what
the buildfarm tells.

Author: Hayato Kuroda <kuroda.hayato@fujitsu.com>
Reviewed-by: Paul A. Jungwirth <pj@illuminatedcomputing.com>
Reviewed-by: Mutaamba Maasha <maasha@gmail.com>
Discussion: https://postgr.es/m/OSCPR01MB14966ED588A0328DAEBE8CB25F5FA2@OSCPR01MB14966.jpnprd01.prod.outlook.com
Backpatch-through: 13

Branch
------
REL_17_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/07a302387176e2107aa09c598091a8eb73a7d70f

Modified Files
--------------
src/backend/replication/slot.c                     |  2 +-
src/test/modules/test_misc/Makefile                |  3 +-
src/test/modules/test_misc/meson.build             |  1 +
.../test_misc/t/008_replslot_single_user.pl        | 95 ++++++++++++++++++++++
4 files changed, 99 insertions(+), 2 deletions(-)


pgsql-committers by date:

Previous
From: Bertrand Drouvot
Date:
Subject: Re: pgsql: Move SQL-callable code related to multixacts into its own file
Next
From: Michael Paquier
Date:
Subject: Re: pgsql: Move SQL-callable code related to multixacts into its own file