postgresql/src/include/executor/nodeNestloop.h

26 lines
824 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* nodeNestloop.h
*
*
*
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: nodeNestloop.h,v 1.15 2001/10/25 05:49:59 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);
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 */