diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-01-04 04:31:43 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-01-04 04:31:43 +0000 |
commit | 4b05912f0b6aa69507bc32ac6ddaf8aeecdeb396 (patch) | |
tree | 2ff63f8cd09f1d5c628cefb16827c406ef40f014 /src/include/parser/parse_func.h | |
parent | c629d3b9d65fdce320aba26d092bfe96274c6092 (diff) | |
download | postgresql-4b05912f0b6aa69507bc32ac6ddaf8aeecdeb396.tar.gz postgresql-4b05912f0b6aa69507bc32ac6ddaf8aeecdeb396.zip |
Fix for count(*), aggs with views and multiple tables and sum(3).
Diffstat (limited to 'src/include/parser/parse_func.h')
-rw-r--r-- | src/include/parser/parse_func.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/parser/parse_func.h b/src/include/parser/parse_func.h index 9ff6ee91b80..12d6ba16b88 100644 --- a/src/include/parser/parse_func.h +++ b/src/include/parser/parse_func.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_func.h,v 1.3 1997/11/26 03:43:12 momjian Exp $ + * $Id: parse_func.h,v 1.4 1998/01/04 04:31:42 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -43,7 +43,7 @@ typedef struct _CandidateList } *CandidateList; extern Node *ParseFunc(ParseState *pstate, char *funcname, List *fargs, - int *curr_resno); + int *curr_resno, int precedence); extern void func_error(char *caller, char *funcname, int nargs, Oid *argtypes); |