diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-12-15 04:08:15 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-12-15 04:08:15 +0000 |
commit | 352cd1f1c5f9834555497b9391e2e3db1970a2b7 (patch) | |
tree | 003927ccfec652ce8d4a58a04cffad78bdad006a /src/backend/commands/remove.c | |
parent | 4ea746a84fbf8fc749f21b27d3b8eb3ef4fe0dda (diff) | |
download | postgresql-352cd1f1c5f9834555497b9391e2e3db1970a2b7.tar.gz postgresql-352cd1f1c5f9834555497b9391e2e3db1970a2b7.zip |
Remove a few remaining vestiges of elog(WARN).
Diffstat (limited to 'src/backend/commands/remove.c')
-rw-r--r-- | src/backend/commands/remove.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 |