]> granicus.if.org Git - postgresql/blob - src/include/optimizer/prep.h
Change #include's to use <> and "" as appropriate.
[postgresql] / src / include / optimizer / prep.h
1 /*-------------------------------------------------------------------------
2  *
3  * prep.h
4  *        prototypes for files in prep.c
5  *
6  *
7  * Copyright (c) 1994, Regents of the University of California
8  *
9  * $Id: prep.h,v 1.16 1999/07/15 23:03:59 momjian Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef PREP_H
14 #define PREP_H
15
16 #include "nodes/plannodes.h"
17 #include "nodes/parsenodes.h"
18
19 /*
20  * prototypes for prepqual.c
21  */
22 extern List *cnfify(Expr *qual, bool removeAndFlag);
23
24 /*
25  * prototypes for preptlist.c
26  */
27 extern List *preprocess_targetlist(List *tlist, int command_type,
28                                           Index result_relation, List *range_table);
29
30 /*
31  * prototypes for prepunion.c
32  */
33 extern List *find_all_inheritors(List *unexamined_relids,
34                                         List *examined_relids);
35 extern int      first_inherit_rt_entry(List *rangetable);
36 extern Append *plan_union_queries(Query *parse);
37 extern Append *plan_inherit_queries(Query *parse, List *tlist, Index rt_index);
38
39 #endif   /* PREP_H */