Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d2404c1

Browse files
author
Thomas G. Lockhart
committed
Add func_select_candidate() to allow use in unary operator parsing.
1 parent 3671cb3 commit d2404c1

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/include/parser/parse_func.h

+6-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: parse_func.h,v 1.9 1998/05/09 23:31:34 thomas Exp $
9+
* $Id: parse_func.h,v 1.10 1998/05/29 14:03:08 thomas Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -49,6 +49,10 @@ extern Node *
4949
ParseFuncOrColumn(ParseState *pstate, char *funcname, List *fargs,
5050
int *curr_resno, int precedence);
5151

52-
extern void func_error(char *caller, char *funcname, int nargs, Oid *argtypes, char *msg);
52+
extern Oid *
53+
func_select_candidate(int nargs, Oid *input_typeids, CandidateList candidates);
54+
55+
extern void
56+
func_error(char *caller, char *funcname, int nargs, Oid *argtypes, char *msg);
5357

5458
#endif /* PARSE_FUNC_H */

0 commit comments

Comments
 (0)