mirror of
https://github.com/postgres/postgres.git
synced 2025-05-21 00:02:53 -04:00
Add func_select_candidate() to allow use in unary operator parsing.
This commit is contained in:
parent
3671cb3a32
commit
d2404c17c9
@ -6,7 +6,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
* 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,
|
ParseFuncOrColumn(ParseState *pstate, char *funcname, List *fargs,
|
||||||
int *curr_resno, int precedence);
|
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 */
|
#endif /* PARSE_FUNC_H */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user