mirror of
https://github.com/postgres/postgres.git
synced 2026-04-08 18:51:56 -04:00
Restore lock level to set vacuum flags
Commit27838981bemistakenly reduced the lock level from exclusive to shared that is acquired to set PGPROC->statusFlags; this was reverted bydcfff74fb1, but failed to do so in one spot. Fix it. Backpatch to 14. Noted by Andres Freund. Discussion: https://postgr.es/m/20211111020724.ggsfhcq3krq5r4hb@alap3.anarazel.de
This commit is contained in:
parent
b609db7155
commit
9aa91cb33b
1 changed files with 1 additions and 1 deletions
|
|
@ -511,7 +511,7 @@ ReplicationSlotRelease(void)
|
|||
MyReplicationSlot = NULL;
|
||||
|
||||
/* might not have been set when we've been a plain slot */
|
||||
LWLockAcquire(ProcArrayLock, LW_SHARED);
|
||||
LWLockAcquire(ProcArrayLock, LW_EXCLUSIVE);
|
||||
MyProc->statusFlags &= ~PROC_IN_LOGICAL_DECODING;
|
||||
ProcGlobal->statusFlags[MyProc->pgxactoff] = MyProc->statusFlags;
|
||||
LWLockRelease(ProcArrayLock);
|
||||
|
|
|
|||
Loading…
Reference in a new issue