Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / include / executor / nodeNestloop.h
blob6565cec48be635bbf9709154b7523589324be808
1 /*-------------------------------------------------------------------------
3 * nodeNestloop.h
7 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef NODENESTLOOP_H
15 #define NODENESTLOOP_H
17 #include "nodes/execnodes.h"
19 extern int ExecCountSlotsNestLoop(NestLoop *node);
20 extern NestLoopState *ExecInitNestLoop(NestLoop *node, EState *estate, int eflags);
21 extern TupleTableSlot *ExecNestLoop(NestLoopState *node);
22 extern void ExecEndNestLoop(NestLoopState *node);
23 extern void ExecReScanNestLoop(NestLoopState *node, ExprContext *exprCtxt);
25 #endif /* NODENESTLOOP_H */