]> granicus.if.org Git - postgresql/commit
Fix erroneous error reports in snapbuild.c.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 12 Feb 2019 06:12:52 +0000 (01:12 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 12 Feb 2019 06:12:52 +0000 (01:12 -0500)
commit442d44fb480d1298a3ed47f869ad2c7fbfca53a7
tree8d3c976d2381cc907cef1c67feeaae458e65860b
parent394ef2397dd47ffa0fb2c1f51e19a2c8e51bec4d
Fix erroneous error reports in snapbuild.c.

It's pretty unhelpful to report the wrong file name in a complaint
about syscall failure, but SnapBuildSerialize managed to do that twice
in a span of 50 lines.  Also fix half a dozen missing or poorly-chosen
errcode assignments; that's mostly cosmetic, but still wrong.

Noted while studying recent failures on buildfarm member nightjar.
I'm not sure whether those reports are actually giving the wrong
filename, because there are two places here with identically
spelled error messages.  The other one is specifically coded not
to report ENOENT, but if it's this one, how could we be getting
ENOENT from open() with O_CREAT?  Need to sit back and await results.

However, these ereports are clearly broken from birth, so back-patch.
src/backend/replication/logical/snapbuild.c