1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-24 10:47:04 +03:00

set "caller" value in parse_func.h to func_get_detail instead of just ""

This commit is contained in:
Marc G. Fournier 1998-02-02 02:12:34 +00:00
parent ff88f7db9d
commit 7264c8226e

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.9 1998/01/27 15:34:39 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.10 1998/02/02 02:12:34 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -728,7 +728,7 @@ func_get_detail(char *funcname,
funcname); funcname);
elog(NOTICE, "that satisfies the given argument types. you will have to"); elog(NOTICE, "that satisfies the given argument types. you will have to");
elog(NOTICE, "retype your query using explicit typecasts."); elog(NOTICE, "retype your query using explicit typecasts.");
func_error("", funcname, nargs, oid_array); func_error("func_get_detail", funcname, nargs, oid_array);
} }
else else
{ {
@ -758,7 +758,7 @@ func_get_detail(char *funcname,
elog(ERROR, "no such attribute or function \"%s\"", elog(ERROR, "no such attribute or function \"%s\"",
funcname); funcname);
} }
func_error("", funcname, nargs, oid_array); func_error("func_get_detail", funcname, nargs, oid_array);
} }
else else
{ {