]> granicus.if.org Git - postgresql/blob - src/include/executor/nodeResult.h
Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.
[postgresql] / src / include / executor / nodeResult.h
1 /*-------------------------------------------------------------------------
2  *
3  * nodeResult.h
4  *
5  *
6  *
7  * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $Id: nodeResult.h,v 1.11 2001/01/24 19:43:23 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef NODERESULT_H
15 #define NODERESULT_H
16
17 #include "nodes/plannodes.h"
18
19 extern TupleTableSlot *ExecResult(Result *node);
20 extern bool ExecInitResult(Result *node, EState *estate, Plan *parent);
21 extern int      ExecCountSlotsResult(Result *node);
22 extern void ExecEndResult(Result *node);
23 extern void ExecReScanResult(Result *node, ExprContext *exprCtxt, Plan *parent);
24
25 #endif   /* NODERESULT_H */