diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-02-05 04:08:44 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-02-05 04:08:44 +0000 |
commit | 7b6cbd53f7930838060dcec1503d1be1fb4ac5f0 (patch) | |
tree | fd65b20346e15c8cd59327b556de138def8eeb91 /src/include/parser/parse_func.h | |
parent | af7a2b3243f64e56a5e77b5d0ce70de0f98c789a (diff) |
func_error() changed so that if caller is passed with NULL value, its
output at least doesn't appear that its missing something.
wasn't particularly confident with removing 'caller' altogether :(
Diffstat (limited to 'src/include/parser/parse_func.h')
-rw-r--r-- | src/include/parser/parse_func.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/parser/parse_func.h b/src/include/parser/parse_func.h index 119d242f407..4b03e0ced58 100644 --- a/src/include/parser/parse_func.h +++ b/src/include/parser/parse_func.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_func.h,v 1.6 1998/02/05 03:40:10 scrappy Exp $ + * $Id: parse_func.h,v 1.7 1998/02/05 04:08:44 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -47,7 +47,7 @@ extern Node *ParseNestedFuncOrColumn(ParseState *pstate, Attr *attr, extern Node *ParseFuncOrColumn(ParseState *pstate, char *funcname, List *fargs, int *curr_resno, int precedence); -extern void func_error(char *funcname, int nargs, Oid *argtypes); +extern void func_error(char *caller, char *funcname, int nargs, Oid *argtypes); #endif /* PARSE_FUNC_H */ |