postgresql/src/include/executor/nodeNestloop.h

26 lines
757 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* nodeNestloop.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: nodeNestloop.h,v 1.11 1999/07/15 15:21:13 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef NODENESTLOOP_H
#define NODENESTLOOP_H
1997-11-25 20:14:33 -05:00
#include "nodes/plannodes.h"
extern TupleTableSlot *ExecNestLoop(NestLoop *node, Plan *parent);
extern bool ExecInitNestLoop(NestLoop *node, EState *estate, Plan *parent);
extern int ExecCountSlotsNestLoop(NestLoop *node);
extern void ExecEndNestLoop(NestLoop *node);
1999-02-12 12:25:05 -05:00
extern void ExecReScanNestLoop(NestLoop *node, ExprContext *exprCtxt,
1999-05-25 12:15:34 -04:00
Plan *parent);
#endif /* NODENESTLOOP_H */