OSDN Git Service

pgindent run. Make it all clean.
[pg-rex/syncrep.git] / src / include / executor / execFlatten.h
1 /*-------------------------------------------------------------------------
2  *
3  * execFlatten.h
4  *        prototypes for execFlatten.c.
5  *
6  *
7  * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $Id: execFlatten.h,v 1.14 2001/03/22 04:00:44 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef EXECFLATTEN_H
15 #define EXECFLATTEN_H
16
17 #include "nodes/execnodes.h"
18 #include "nodes/parsenodes.h"
19
20
21 extern Datum ExecEvalIter(Iter *iterNode, ExprContext *econtext,
22                          bool *isNull, ExprDoneCond *isDone);
23
24 extern void ExecEvalFjoin(TargetEntry *tlist, ExprContext *econtext,
25                           bool *isNullVect, ExprDoneCond *fj_isDone);
26
27
28 #endif   /* EXECFLATTEN_H */