psql ignores failure to open -o target file - Mailing list pgsql-hackers

From Tom Lane
Subject psql ignores failure to open -o target file
Date
Msg-id 26258.1449072478@sss.pgh.pa.us
Whole thread Raw
Responses Re: psql ignores failure to open -o target file  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: psql ignores failure to open -o target file  (Robert Haas <robertmhaas@gmail.com>)
List pgsql-hackers
I just noticed that parse_psql_options() ignores the result of setQFout(),
meaning that if the argument of a -o command line option is bogus, we'll
ignore the switch entirely after printing an error report.  For example

$ psql -o /dev/foo -c 'select 1'
/dev/foo: Permission denied?column? 
----------       1
(1 row)

$

This seems surprising to me: any other program in the world would do
exit(1) after discovering that it couldn't write where it had been
told to.  Should we change this?
        regards, tom lane



pgsql-hackers by date:

Previous
From: Andres Freund
Date:
Subject: Re: Rework the way multixact truncations work
Next
From: "Joshua D. Drake"
Date:
Subject: Re: Remaining 9.5 open items