]> granicus.if.org Git - postgresql/commit
The patch updates the documentation to reflect the fact that higher values
authorBruce Momjian <bruce@momjian.us>
Thu, 13 Oct 2005 20:58:42 +0000 (20:58 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 13 Oct 2005 20:58:42 +0000 (20:58 +0000)
commit8ac386226d76b29a9f54c26b157e04e9b8368606
tree6d001a7bc49f704ccea570180c9d772680a2ebe5
parent478479427993b795a670ab6d2785e46e446d09d6
The patch updates the documentation to reflect the fact that higher values
of client_min_messages (fatal + panic) are valid and also fixes a slight
issue with how psql tried to display error messages that aren't sent to
the client.

We often tell people to ignore errors in response to requests for things
like "drop if exists", but there's no good way to completely hide this
without upping client_min_messages past ERROR.  When running a file like

SET client_min_messages TO 'FATAL';

DROP TABLE doesntexist;

with "psql -f filename" you get an error prefix of
"psql:/home/username/filename:3" even though there is no error message to
prefix because it isn't sent to the client.

Kris Jurka
doc/src/sgml/config.sgml
src/bin/psql/common.c