pgsql: Add some missing exit() calls in error paths for various binarie

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема pgsql: Add some missing exit() calls in error paths for various binarie
Дата
Msg-id E1m8w2E-0001ZL-K1@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Add some missing exit() calls in error paths for various binaries

The following changes are done:
- In pg_archivecleanup, the cleanup of older WAL segments would never
fail immediately.
- In pgbench, the initialization of a thread barrier would not fail
hard.
- In pg_recvlogical, a stat() failure never got the call.
- In pg_basebackup, two chmod() reported a failure without exit()'ing
when unpacking some tar data freshly received.  It may be possible to
continue writing some data even after this failure, but that could be
confusing to the user at the end.

These are arguably bugs, but they would happen for code paths where a
failure is unlikely going to happen, so no backpatch is done.

Reviewed-by: Robert Haas, Fabien Coelho
Discussion: https://postgr.es/m/YQDMdB+B68yePFeT@paquier.xyz

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/856de3b39cf6041338b286a99257c324ce647f4e

Modified Files
--------------
src/bin/pg_archivecleanup/pg_archivecleanup.c | 11 ++++++++++-
src/bin/pg_basebackup/pg_basebackup.c         |  6 ++++++
src/bin/pg_basebackup/pg_recvlogical.c        |  3 +++
src/bin/pgbench/pgbench.c                     |  3 +++
4 files changed, 22 insertions(+), 1 deletion(-)


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

Предыдущее
От: Michael Paquier
Дата:
Сообщение: pgsql: Add missing exit() in pg_verifybackup when failing to find pg_wa
Следующее
От: Michael Paquier
Дата:
Сообщение: pgsql: Fix typo in tab-complete.c