mirror of
https://github.com/postgres/postgres.git
synced 2025-07-18 17:42:25 +03:00
First cut at full support for OUTER JOINs. There are still a few loose
ends to clean up (see my message of same date to pghackers), but mostly it works. INITDB REQUIRED!
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: parse_func.h,v 1.26 2000/08/20 00:44:17 tgl Exp $
|
||||
* $Id: parse_func.h,v 1.27 2000/09/12 21:07:12 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -39,11 +39,11 @@ typedef struct _CandidateList
|
||||
} *CandidateList;
|
||||
|
||||
extern Node *ParseNestedFuncOrColumn(ParseState *pstate, Attr *attr,
|
||||
int *curr_resno, int precedence);
|
||||
int precedence);
|
||||
extern Node *ParseFuncOrColumn(ParseState *pstate,
|
||||
char *funcname, List *fargs,
|
||||
bool agg_star, bool agg_distinct,
|
||||
int *curr_resno, int precedence);
|
||||
char *funcname, List *fargs,
|
||||
bool agg_star, bool agg_distinct,
|
||||
int precedence);
|
||||
|
||||
extern bool func_get_detail(char *funcname, int nargs, Oid *argtypes,
|
||||
Oid *funcid, Oid *rettype,
|
||||
|
Reference in New Issue
Block a user