]> granicus.if.org Git - postgresql/blob - src/include/parser/parse_clause.h
Change #include's to use <> and "" as appropriate.
[postgresql] / src / include / parser / parse_clause.h
1 /*-------------------------------------------------------------------------
2  *
3  * parse_clause.h
4  *
5  *
6  *
7  * Copyright (c) 1994, Regents of the University of California
8  *
9  * $Id: parse_clause.h,v 1.11 1999/07/15 23:04:01 momjian Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef PARSE_CLAUSE_H
14 #define PARSE_CLAUSE_H
15
16 #include "parser/parse_node.h"
17
18 extern void makeRangeTable(ParseState *pstate, char *relname, List *frmList, Node **qual);
19 extern Node *transformWhereClause(ParseState *pstate, Node *where, Node *using);
20 extern List *transformGroupClause(ParseState *pstate, List *grouplist,
21                                          List *targetlist);
22 extern List *transformSortClause(ParseState *pstate,
23                                         List *orderlist, List *sortClause,
24                                         List *targetlist, char *uniqueFlag);
25 #endif   /* PARSE_CLAUSE_H */