mirror of
https://github.com/postgres/postgres.git
synced 2026-01-13 12:22:55 +03:00
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files.
30 lines
1.0 KiB
C
30 lines
1.0 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeIndexscan.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: nodeIndexscan.h,v 1.10 2000/01/26 05:58:05 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEINDEXSCAN_H
|
|
#define NODEINDEXSCAN_H
|
|
|
|
#include "nodes/plannodes.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);
|
|
extern void ExecIndexReScan(IndexScan *node, ExprContext *exprCtxt, Plan *parent);
|
|
|
|
#endif /* NODEINDEXSCAN_H */
|