]> granicus.if.org Git - postgresql/commitdiff
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)
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

index 5da06fddce351a420aa46dad56270de608f3f5c3..b64ba6c1561190992e01a8ae9978cc414e8b2fee 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.26 2005/10/13 17:32:42 momjian Exp $
+$PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.27 2005/10/13 20:58:42 momjian Exp $
 -->
 <chapter Id="runtime-config">
   <title>Run-time Configuration</title>
@@ -2295,7 +2295,8 @@ SELECT * FROM parent WHERE key = 2400;
         Valid values are <literal>DEBUG5</>,
         <literal>DEBUG4</>, <literal>DEBUG3</>, <literal>DEBUG2</>,
         <literal>DEBUG1</>, <literal>LOG</>, <literal>NOTICE</>,
-        <literal>WARNING</>, and <literal>ERROR</>.  Each level
+        <literal>WARNING</>, <literal>ERROR</>, <literal>FATAL</>,
+        and <literal>PANIC</>.  Each level
         includes all the levels that follow it.  The later the level,
         the fewer messages are sent.  The default is
         <literal>NOTICE</>.  Note that <literal>LOG</> has a different
index 9b087adf01066ad65fa0e55760e5a47f7edb37ec..886bcde178635a0a0c56c4ba8fcff60fd42dc2e3 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 2000-2005, PostgreSQL Global Development Group
  *
- * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.106 2005/10/04 19:01:18 petere Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.107 2005/10/13 20:58:42 momjian Exp $
  */
 #include "postgres_fe.h"
 #include "common.h"
@@ -681,7 +681,10 @@ AcceptResult(const PGresult *result, const char *query)
 
        if (!OK)
        {
-               psql_error("%s", PQerrorMessage(pset.db));
+               const char *error = PQerrorMessage(pset.db);
+               if (strlen(error))
+                       psql_error("%s", error);
+
                ReportSyntaxErrorPosition(result, query);
                CheckConnection();
        }