pgsql: The patch updates the documentation to reflect the fact that - Mailing list pgsql-committers

From momjian@svr1.postgresql.org (Bruce Momjian)
Subject pgsql: The patch updates the documentation to reflect the fact that
Date
Msg-id 20051013205843.5ADCDD842C@svr1.postgresql.org
Whole thread Raw
List 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)

pgsql-committers by date:

Previous
From: momjian@svr1.postgresql.org (Bruce Momjian)
Date:
Subject: pgsql: Enable threaded python builds on freebsd5, per report from Jim C.
Next
From: tgl@svr1.postgresql.org (Tom Lane)
Date:
Subject: pgsql: Adjust the discussion of triggers to more clearly guide people in