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.
33 lines
900 B
33 lines
900 B
![]()
30 years ago
|
/*-------------------------------------------------------------------------
|
||
|
*
|
||
|
* nodeIndexscan.h--
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
* Copyright (c) 1994, Regents of the University of California
|
||
|
*
|
||
![]()
29 years ago
|
* $Id: nodeIndexscan.h,v 1.1 1996/08/28 07:22:20 scrappy Exp $
|
||
![]()
30 years ago
|
*
|
||
|
*-------------------------------------------------------------------------
|
||
|
*/
|
||
|
#ifndef NODEINDEXSCAN_H
|
||
|
#define NODEINDEXSCAN_H
|
||
|
|
||
|
extern TupleTableSlot *ExecIndexScan(IndexScan *node);
|
||
|
|
||
|
extern void ExecIndexReScan(IndexScan *node, ExprContext *exprCtxt, Plan *parent);
|
||
|
|
||
|
extern void ExecEndIndexScan(IndexScan *node);
|
||
|
|
||
|
extern void ExecIndexMarkPos(IndexScan *node);
|
||
|
|
||
|
extern void ExecIndexRestrPos(IndexScan *node);
|
||
|
|
||
|
extern void ExecUpdateIndexScanKeys(IndexScan *node, ExprContext *econtext);
|
||
|
|
||
|
extern bool ExecInitIndexScan(IndexScan *node, EState *estate, Plan *parent);
|
||
|
|
||
|
extern int ExecCountSlotsIndexScan(IndexScan *node);
|
||
|
|
||
|
#endif /* NODEINDEXSCAN_H */
|