aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-12-15 04:08:15 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-12-15 04:08:15 +0000
commit352cd1f1c5f9834555497b9391e2e3db1970a2b7 (patch)
tree003927ccfec652ce8d4a58a04cffad78bdad006a
parent4ea746a84fbf8fc749f21b27d3b8eb3ef4fe0dda (diff)
downloadpostgresql-352cd1f1c5f9834555497b9391e2e3db1970a2b7.tar.gz
postgresql-352cd1f1c5f9834555497b9391e2e3db1970a2b7.zip
Remove a few remaining vestiges of elog(WARN).
-rw-r--r--src/backend/commands/indexcmds.c4
-rw-r--r--src/backend/commands/remove.c6
-rw-r--r--src/include/commands/command.h4
3 files changed, 7 insertions, 7 deletions
diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c
index 8e362399d82..07fa0cfe760 100644
--- a/src/backend/commands/indexcmds.c
+++ b/src/backend/commands/indexcmds.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.42 2000/12/08 06:17:58 inoue Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.43 2000/12/15 04:08:15 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -598,7 +598,7 @@ GetDefaultOpClass(Oid atttypid)
*
* Exceptions:
* BadArg if name is invalid.
- * "WARN" if index nonexistent.
+ * "ERROR" if index nonexistent.
* ...
*/
void
diff --git a/src/backend/commands/remove.c b/src/backend/commands/remove.c
index cb11b47a37c..7353ae2ca82 100644
--- a/src/backend/commands/remove.c
+++ b/src/backend/commands/remove.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/commands/Attic/remove.c,v 1.56 2000/11/20 20:36:47 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/remove.c,v 1.57 2000/12/15 04:08:15 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -35,7 +35,7 @@
* Exceptions:
* BadArg if name is invalid.
* BadArg if type1 is invalid.
- * "WARN" if operator nonexistent.
+ * "ERROR" if operator nonexistent.
* ...
*/
void
@@ -291,7 +291,7 @@ RemoveType(char *typeName) /* type name to be removed */
*
* Exceptions:
* BadArg if name is invalid.
- * "WARN" if function nonexistent.
+ * "ERROR" if function nonexistent.
* ...
*/
void
diff --git a/src/include/commands/command.h b/src/include/commands/command.h
index 4f2cfba2f12..9ab7a53f44a 100644
--- a/src/include/commands/command.h
+++ b/src/include/commands/command.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: command.h,v 1.23 2000/09/12 05:09:47 momjian Exp $
+ * $Id: command.h,v 1.24 2000/12/15 04:08:15 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -24,7 +24,7 @@
*
* Exceptions:
* BadArg if forward invalid.
- * "WARN" if portal not found.
+ * "ERROR" if portal not found.
*/
extern void PerformPortalFetch(char *name, bool forward, int count,
char *tag, CommandDest dest);