From ed5003c58401e5727fcdd970505972394c95febb Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 12 Sep 2000 21:07:18 +0000 Subject: 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! --- src/include/parser/parse_func.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/include/parser/parse_func.h') diff --git a/src/include/parser/parse_func.h b/src/include/parser/parse_func.h index be96652cfb..d221c600c8 100644 --- a/src/include/parser/parse_func.h +++ b/src/include/parser/parse_func.h @@ -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, -- cgit v1.2.1