pgsql: Be more verbose when the postmaster unexpectedly quits.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Be more verbose when the postmaster unexpectedly quits.
Дата
Msg-id E1lkpQx-0000dr-TX@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Be more verbose when the postmaster unexpectedly quits.

Emit a LOG message when the postmaster stops because of a failure in
the startup process.  There already is a similar message if we exit
for that reason during PM_STARTUP phase, so it seems inconsistent
that there was none if the startup process fails later on.

Also emit a LOG message when the postmaster stops after a crash
because restart_after_crash is disabled.  This seems potentially
helpful in case DBAs (or developers) forget that that's set.
Also, it was the only remaining place where the postmaster would
do an abnormal exit without any comment as to why.

In passing, remove an unreachable call of ExitPostmaster(0).

Discussion: https://postgr.es/m/194914.1621641288@sss.pgh.pa.us

Branch
------
master

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

Modified Files
--------------
src/backend/postmaster/postmaster.c | 27 +++++++++++++++++++++------
1 file changed, 21 insertions(+), 6 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: pgsql: Fix planner's use of Result Cache with unique joins
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Re-order pg_attribute columns to eliminate some padding space.