]> granicus.if.org Git - postgresql/blob - src/include/executor/nodeNestloop.h
OK, folks, here is the pgindent output.
[postgresql] / src / include / executor / nodeNestloop.h
1 /*-------------------------------------------------------------------------
2  *
3  * nodeNestloop.h--
4  *
5  *
6  *
7  * Copyright (c) 1994, Regents of the University of California
8  *
9  * $Id: nodeNestloop.h,v 1.7 1998/09/01 04:36:03 momjian Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef NODENESTLOOP_H
14 #define NODENESTLOOP_H
15
16 #include "executor/tuptable.h"
17 #include "nodes/execnodes.h"
18 #include "nodes/plannodes.h"
19
20 extern TupleTableSlot *ExecNestLoop(NestLoop *node, Plan *parent);
21 extern bool ExecInitNestLoop(NestLoop *node, EState *estate, Plan *parent);
22 extern int      ExecCountSlotsNestLoop(NestLoop *node);
23 extern void ExecEndNestLoop(NestLoop *node);
24 extern void ExecReScanNestLoop(NestLoop *node, ExprContext *exprCtxt, Plan *parent);
25
26 #endif   /* NODENESTLOOP_H */