From 6108a7ed6ad1fde7015d7335b53cda940847a169 Mon Sep 17 00:00:00 2001
From: Bruce Momjian <bruce@momjian.us>
Date: Thu, 18 May 2000 16:09:38 +0000
Subject: [PATCH] Change remove function warning for built-ins.

---
 src/backend/commands/remove.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/commands/remove.c b/src/backend/commands/remove.c
index b4cccf0428a..03b74549ee8 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.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 ***/
-- 
GitLab