Fix a few errors in comments. Patch by Fujii Masao, plus the one in
[PostgreSQL.git] / src / include / executor / nodeResult.h
blob2aa94a74e380eab5fd5094255c873573993c404f
1 /*-------------------------------------------------------------------------
3 * nodeResult.h
7 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef NODERESULT_H
15 #define NODERESULT_H
17 #include "nodes/execnodes.h"
19 extern int ExecCountSlotsResult(Result *node);
20 extern ResultState *ExecInitResult(Result *node, EState *estate, int eflags);
21 extern TupleTableSlot *ExecResult(ResultState *node);
22 extern void ExecEndResult(ResultState *node);
23 extern void ExecResultMarkPos(ResultState *node);
24 extern void ExecResultRestrPos(ResultState *node);
25 extern void ExecReScanResult(ResultState *node, ExprContext *exprCtxt);
27 #endif /* NODERESULT_H */