OSDN Git Service

Another pgindent run. Fixes enum indenting, and improves #endif
[pg-rex/syncrep.git] / src / include / executor / nodeIndexscan.h
1 /*-------------------------------------------------------------------------
2  *
3  * nodeIndexscan.h
4  *
5  *
6  *
7  * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $Id: nodeIndexscan.h,v 1.13 2001/10/28 06:26:06 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef NODEINDEXSCAN_H
15 #define NODEINDEXSCAN_H
16
17 #include "nodes/plannodes.h"
18
19 extern TupleTableSlot *ExecIndexScan(IndexScan *node);
20 extern void ExecIndexReScan(IndexScan *node, ExprContext *exprCtxt, Plan *parent);
21 extern void ExecEndIndexScan(IndexScan *node);
22 extern void ExecIndexMarkPos(IndexScan *node);
23 extern void ExecIndexRestrPos(IndexScan *node);
24 extern void ExecUpdateIndexScanKeys(IndexScan *node, ExprContext *econtext);
25 extern bool ExecInitIndexScan(IndexScan *node, EState *estate, Plan *parent);
26 extern int      ExecCountSlotsIndexScan(IndexScan *node);
27 extern void ExecIndexReScan(IndexScan *node, ExprContext *exprCtxt, Plan *parent);
28
29 #endif   /* NODEINDEXSCAN_H */