Change remove function warning for built-ins.

This commit is contained in:
Bruce Momjian 2000-05-18 16:09:38 +00:00
parent 61f06bc2f1
commit 6108a7ed6a
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/remove.c,v 1.47 2000/05/18 15:45:00 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/remove.c,v 1.48 2000/05/18 16:09:38 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -370,7 +370,7 @@ RemoveFunction(char *functionName, /* function name to be removed */
if ((((Form_pg_proc) GETSTRUCT(tup))->prolang) == INTERNALlanguageId)
{
heap_close(relation, RowExclusiveLock);
elog(NOTICE, "RemoveFunction: function \"%s\" is built-in", functionName);
elog(NOTICE, "Removing built-in function \"%s\"", functionName);
}
/*** Delete any comments associated with this function ***/