]> granicus.if.org Git - postgresql/blob - src/include/executor/nodeNestloop.h
Clean up handling of variable-free qual clauses. System now does the
[postgresql] / src / include / executor / nodeNestloop.h
1 /*-------------------------------------------------------------------------
2  *
3  * nodeNestloop.h
4  *
5  *
6  *
7  * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $Id: nodeNestloop.h,v 1.13 2000/08/13 02:50:20 tgl Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef NODENESTLOOP_H
15 #define NODENESTLOOP_H
16
17 #include "nodes/plannodes.h"
18
19 extern TupleTableSlot *ExecNestLoop(NestLoop *node);
20 extern bool ExecInitNestLoop(NestLoop *node, EState *estate, Plan *parent);
21 extern int      ExecCountSlotsNestLoop(NestLoop *node);
22 extern void ExecEndNestLoop(NestLoop *node);
23 extern void ExecReScanNestLoop(NestLoop *node, ExprContext *exprCtxt,
24                                    Plan *parent);
25
26 #endif   /* NODENESTLOOP_H */