mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-07 22:27:33 +08:00
26 lines
831 B
C
26 lines
831 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeResult.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeResult.h,v 1.23 2007/01/05 22:19:54 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODERESULT_H
|
|
#define NODERESULT_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern int ExecCountSlotsResult(Result *node);
|
|
extern ResultState *ExecInitResult(Result *node, EState *estate, int eflags);
|
|
extern TupleTableSlot *ExecResult(ResultState *node);
|
|
extern void ExecEndResult(ResultState *node);
|
|
extern void ExecReScanResult(ResultState *node, ExprContext *exprCtxt);
|
|
|
|
#endif /* NODERESULT_H */
|