1996-07-09 02:22:35 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeNestloop.h--
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
1996-08-28 03:27:54 -04:00
|
|
|
* $Id: nodeNestloop.h,v 1.1 1996/08/28 07:22:23 scrappy Exp $
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef NODENESTLOOP_H
|
|
|
|
|
#define NODENESTLOOP_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);
|
|
|
|
|
|
|
|
|
|
#endif /* NODENESTLOOP_H */
|