mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
995 B
28 lines
995 B
|
20 years ago
|
/*-------------------------------------------------------------------------
|
||
|
|
*
|
||
|
|
* nodeValuesscan.h
|
||
|
|
*
|
||
|
|
*
|
||
|
|
*
|
||
|
|
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
|
||
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||
|
|
*
|
||
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeValuesscan.h,v 1.1 2006/08/02 01:59:47 joe Exp $
|
||
|
|
*
|
||
|
|
*-------------------------------------------------------------------------
|
||
|
|
*/
|
||
|
|
#ifndef NODEVALUESSCAN_H
|
||
|
|
#define NODEVALUESSCAN_H
|
||
|
|
|
||
|
|
#include "nodes/execnodes.h"
|
||
|
|
|
||
|
|
extern int ExecCountSlotsValuesScan(ValuesScan *node);
|
||
|
|
extern ValuesScanState *ExecInitValuesScan(ValuesScan *node, EState *estate, int eflags);
|
||
|
|
extern TupleTableSlot *ExecValuesScan(ValuesScanState *node);
|
||
|
|
extern void ExecEndValuesScan(ValuesScanState *node);
|
||
|
|
extern void ExecValuesMarkPos(ValuesScanState *node);
|
||
|
|
extern void ExecValuesRestrPos(ValuesScanState *node);
|
||
|
|
extern void ExecValuesReScan(ValuesScanState *node, ExprContext *exprCtxt);
|
||
|
|
|
||
|
|
#endif /* NODEVALUESSCAN_H */
|