]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Ensure write failure reports no-disk-space
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 19 Jun 2020 20:46:07 +0000 (16:46 -0400)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 19 Jun 2020 20:46:07 +0000 (16:46 -0400)
commit411febd53e99cfb59db28e8da06c36abf366325a
tree0db13253bf292bf74dd12c0e01b50b0b1376f128
parent91e27a3e80b643228e5dfdf0ad4f36b795cde976
Ensure write failure reports no-disk-space

A few places calling fwrite and gzwrite were not setting errno to ENOSPC
when reporting errors, as is customary; this led to some failures being
reported as
"could not write file: Success"
which makes us look silly.  Make a few of these places in pg_dump and
pg_basebackup use our customary pattern.

Backpatch-to: 9.5
Author: Justin Pryzby <pryzby@telsasoft.com>
Author: Tom Lane <tgl@sss.pgh.pa.us>
Author: Álvaro Herrera <alvherre@alvh.no-ip.org>
Discussion: https://postgr.es/m/20200611153753.GU14879@telsasoft.com
src/bin/pg_basebackup/pg_basebackup.c
src/bin/pg_dump/pg_backup_directory.c