nodeNestloop.h 819 字节
Newer Older
1 2 3
/*-------------------------------------------------------------------------
 *
 * nodeNestloop.h--
4
 *
5 6 7 8
 *
 *
 * Copyright (c) 1994, Regents of the University of California
 *
B
Bruce Momjian 已提交
9
 * $Id: nodeNestloop.h,v 1.8 1999/02/12 17:24:55 momjian Exp $
10 11 12
 *
 *-------------------------------------------------------------------------
 */
13 14
#ifndef NODENESTLOOP_H
#define NODENESTLOOP_H
15

B
Bruce Momjian 已提交
16 17 18 19
#include "executor/tuptable.h"
#include "nodes/execnodes.h"
#include "nodes/plannodes.h"

20 21 22 23
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);
B
Bruce Momjian 已提交
24 25
extern void ExecReScanNestLoop(NestLoop *node, ExprContext *exprCtxt,
								Plan *parent);
26

27
#endif	 /* NODENESTLOOP_H */