]> granicus.if.org Git - postgresql/blob - src/include/executor/nodeResult.h
Subselects...
[postgresql] / src / include / executor / nodeResult.h
1 /*-------------------------------------------------------------------------
2  *
3  * nodeResult.h--
4  *
5  *
6  *
7  * Copyright (c) 1994, Regents of the University of California
8  *
9  * $Id: nodeResult.h,v 1.6 1998/02/13 03:43:39 vadim Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef NODERESULT_H
14 #define NODERESULT_H
15
16 #include "executor/tuptable.h"
17 #include "nodes/execnodes.h"
18 #include "nodes/plannodes.h"
19
20 extern TupleTableSlot *ExecResult(Result *node);
21 extern bool ExecInitResult(Result *node, EState *estate, Plan *parent);
22 extern int      ExecCountSlotsResult(Result *node);
23 extern void ExecEndResult(Result *node);
24 extern void ExecReScanResult(Result *node, ExprContext *exprCtxt, Plan *parent);
25
26 #endif                                                  /* NODERESULT_H */