pgsql: postmaster: Don't repeatedly transition to crashing state - Mailing list pgsql-committers

From Andres Freund
Subject pgsql: postmaster: Don't repeatedly transition to crashing state
Date
Msg-id E1tbSNL-003L6r-Q2@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
postmaster: Don't repeatedly transition to crashing state

Previously HandleChildCrash() skipped logging and signalling child exits if
already in an immediate shutdown or in FatalError state, but still
transitioned server state in response to a crash. That's redundant.

In the other place we transition to FatalError, we do take care to not do so
when already in FatalError state.

To make it easier to combine different paths for entering FatalError state,
only do so once in HandleChildCrash().

Reviewed-by: Bertrand Drouvot <bertranddrouvot.pg@gmail.com>
Discussion: https://postgr.es/m/kgng5nrvnlv335evmsuvpnh354rw7qyazl73kdysev2cr2v5zu@m3cfzxicm5kp

Branch
------
master

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

Modified Files
--------------
src/backend/postmaster/postmaster.c | 22 ++++++++--------------
1 file changed, 8 insertions(+), 14 deletions(-)


pgsql-committers by date:

Previous
From: Álvaro Herrera
Date:
Subject: pgsql: Simplify signature of RewriteTable
Next
From: Jeff Davis
Date:
Subject: pgsql: Add SQL function CASEFOLD().