Add func_select_candidate() to allow use in unary operator parsing.

This commit is contained in:
Thomas G. Lockhart 1998-05-29 14:03:08 +00:00
parent 3671cb3a32
commit d2404c17c9
1 changed files with 6 additions and 2 deletions

View File

@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: parse_func.h,v 1.9 1998/05/09 23:31:34 thomas Exp $
* $Id: parse_func.h,v 1.10 1998/05/29 14:03:08 thomas Exp $
*
*-------------------------------------------------------------------------
*/
@ -49,6 +49,10 @@ extern Node *
ParseFuncOrColumn(ParseState *pstate, char *funcname, List *fargs,
int *curr_resno, int precedence);
extern void func_error(char *caller, char *funcname, int nargs, Oid *argtypes, char *msg);
extern Oid *
func_select_candidate(int nargs, Oid *input_typeids, CandidateList candidates);
extern void
func_error(char *caller, char *funcname, int nargs, Oid *argtypes, char *msg);
#endif /* PARSE_FUNC_H */