pgsql: The patch updates the documentation to reflect the fact that

From: momjian(at)svr1(dot)postgresql(dot)org (Bruce Momjian)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: The patch updates the documentation to reflect the fact that
Date: 2005-10-13 20:58:43
Message-ID: 20051013205843.5ADCDD842C@svr1.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
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

Modified Files:
--------------
pgsql/doc/src/sgml:
config.sgml (r1.26 -> r1.27)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/config.sgml.diff?r1=1.26&r2=1.27)
pgsql/src/bin/psql:
common.c (r1.106 -> r1.107)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/common.c.diff?r1=1.106&r2=1.107)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2005-10-13 21:09:38 pgsql: Adjust the discussion of triggers to more clearly guide people in
Previous Message Bruce Momjian 2005-10-13 20:40:04 pgsql: Enable threaded python builds on freebsd5, per report from Jim C.