]> granicus.if.org Git - postgresql/commit
Fix case of pg_dump -Fc to an unseekable file (such as a pipe).
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 5 May 2014 15:26:41 +0000 (11:26 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 5 May 2014 15:26:41 +0000 (11:26 -0400)
commite03485ae8a2025d5deea291ebb24412229cc2fe5
treeadf4024e2c81ed2d516e6ae42e73264fb112b601
parentf8db074049be74fa100b4f97d09ee76222660e7c
Fix case of pg_dump -Fc to an unseekable file (such as a pipe).

This was accidentally broken in commits cfa1b4a711/5e8e794e3b.
It saves a line or so to call ftello unconditionally in _CloseArchive,
but we have to expect that it might fail if we're not in hasSeek mode.
Per report from Bernd Helmle.

In passing, improve _getFilePos to print an appropriate message if
ftello fails unexpectedly, rather than just a vague complaint about
"ftell mismatch".
src/bin/pg_dump/pg_backup_custom.c