2002-05-12 16:10:05 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeFunctionscan.h
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
2010-01-02 11:58:17 -05:00
|
|
|
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
|
2002-05-12 16:10:05 -04:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
2010-07-12 13:01:06 -04:00
|
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeFunctionscan.h,v 1.16 2010/07/12 17:01:06 tgl Exp $
|
2002-05-12 16:10:05 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef NODEFUNCTIONSCAN_H
|
|
|
|
|
#define NODEFUNCTIONSCAN_H
|
|
|
|
|
|
2002-12-05 10:50:39 -05:00
|
|
|
#include "nodes/execnodes.h"
|
2002-05-12 16:10:05 -04:00
|
|
|
|
2006-02-27 23:10:28 -05:00
|
|
|
extern FunctionScanState *ExecInitFunctionScan(FunctionScan *node, EState *estate, int eflags);
|
2002-12-05 10:50:39 -05:00
|
|
|
extern TupleTableSlot *ExecFunctionScan(FunctionScanState *node);
|
|
|
|
|
extern void ExecEndFunctionScan(FunctionScanState *node);
|
2010-07-12 13:01:06 -04:00
|
|
|
extern void ExecReScanFunctionScan(FunctionScanState *node);
|
2002-05-12 16:10:05 -04:00
|
|
|
|
|
|
|
|
#endif /* NODEFUNCTIONSCAN_H */
|