diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/optimizer/clauses.h | 3 | ||||
-rw-r--r-- | src/include/parser/parse_agg.h | 7 |
2 files changed, 4 insertions, 6 deletions
diff --git a/src/include/optimizer/clauses.h b/src/include/optimizer/clauses.h index 024c1599a4c..7ee0f1be2e4 100644 --- a/src/include/optimizer/clauses.h +++ b/src/include/optimizer/clauses.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: clauses.h,v 1.60 2003/01/17 02:01:21 tgl Exp $ + * $Id: clauses.h,v 1.61 2003/01/17 03:25:04 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -52,7 +52,6 @@ extern bool expression_returns_set(Node *clause); extern bool contain_subplans(Node *clause); extern List *pull_subplans(Node *clause); -extern void check_subplans_for_ungrouped_vars(Query *query); extern bool contain_mutable_functions(Node *clause); extern bool contain_volatile_functions(Node *clause); diff --git a/src/include/parser/parse_agg.h b/src/include/parser/parse_agg.h index e836310f82e..111d726bc9c 100644 --- a/src/include/parser/parse_agg.h +++ b/src/include/parser/parse_agg.h @@ -1,13 +1,12 @@ /*------------------------------------------------------------------------- * * parse_agg.h - * - * + * handle aggregates in parser * * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: parse_agg.h,v 1.24 2002/06/20 20:29:51 momjian Exp $ + * $Id: parse_agg.h,v 1.25 2003/01/17 03:25:04 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -16,6 +15,6 @@ #include "parser/parse_node.h" -extern void parseCheckAggregates(ParseState *pstate, Query *qry, Node *qual); +extern void parseCheckAggregates(ParseState *pstate, Query *qry); #endif /* PARSE_AGG_H */ |