]> granicus.if.org Git - postgresql/blob - src/include/optimizer/planner.h
OK, folks, here is the pgindent output.
[postgresql] / src / include / optimizer / planner.h
1 /*-------------------------------------------------------------------------
2  *
3  * planner.h--
4  *        prototypes for planner.c.
5  *
6  *
7  * Copyright (c) 1994, Regents of the University of California
8  *
9  * $Id: planner.h,v 1.9 1998/09/01 04:37:18 momjian Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef PLANNER_H
14 #define PLANNER_H
15
16 /*
17 */
18
19 #include "nodes/parsenodes.h"
20 #include "nodes/plannodes.h"
21 #include "parser/parse_node.h"
22
23 extern Plan *planner(Query *parse);
24 extern Plan *union_planner(Query *parse);
25 extern void pg_checkretval(Oid rettype, QueryTreeList *querytree_list);
26
27 #endif   /* PLANNER_H */