Fix pg_dump bug in the database-level collation patch. "datcollate" and
[PostgreSQL.git] / src / include / executor / nodeNestloop.h
bloba6f5cfc3721468759e4e85e53d1cf0c5bd90c469
1 /*-------------------------------------------------------------------------
3 * nodeNestloop.h
7 * Portions Copyright (c) 1996-2008, 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 */