mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-07 00:27:30 +08:00
30 lines
1.0 KiB
C
30 lines
1.0 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeIndexscan.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeIndexscan.h,v 1.19 2003/11/29 22:41:01 pgsql Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEINDEXSCAN_H
|
|
#define NODEINDEXSCAN_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern int ExecCountSlotsIndexScan(IndexScan *node);
|
|
extern IndexScanState *ExecInitIndexScan(IndexScan *node, EState *estate);
|
|
extern TupleTableSlot *ExecIndexScan(IndexScanState *node);
|
|
extern void ExecEndIndexScan(IndexScanState *node);
|
|
extern void ExecIndexMarkPos(IndexScanState *node);
|
|
extern void ExecIndexRestrPos(IndexScanState *node);
|
|
extern void ExecIndexReScan(IndexScanState *node, ExprContext *exprCtxt);
|
|
|
|
extern void ExecUpdateIndexScanKeys(IndexScanState *node, ExprContext *econtext);
|
|
|
|
#endif /* NODEINDEXSCAN_H */
|