diff options
Diffstat (limited to 'src/include/parser/parse_clause.h')
-rw-r--r-- | src/include/parser/parse_clause.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/include/parser/parse_clause.h b/src/include/parser/parse_clause.h index 235a02bc4c2..58b8fc60fa4 100644 --- a/src/include/parser/parse_clause.h +++ b/src/include/parser/parse_clause.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: parse_clause.h,v 1.15 2000/01/27 18:11:47 tgl Exp $ + * $Id: parse_clause.h,v 1.16 2000/02/15 03:38:28 thomas Exp $ * *------------------------------------------------------------------------- */ @@ -16,10 +16,9 @@ #include "parser/parse_node.h" -extern void makeRangeTable(ParseState *pstate, List *frmList, Node **qual); +extern void makeRangeTable(ParseState *pstate, List *frmList); extern void setTargetTable(ParseState *pstate, char *relname); -extern Node *transformWhereClause(ParseState *pstate, Node *where, - Node *using); +extern Node *transformWhereClause(ParseState *pstate, Node *where); extern List *transformGroupClause(ParseState *pstate, List *grouplist, List *targetlist); extern List *transformSortClause(ParseState *pstate, List *orderlist, |