Header And Logo

PostgreSQL
| The world's most advanced open source database.

nodeIndexonlyscan.h

Go to the documentation of this file.
00001 /*-------------------------------------------------------------------------
00002  *
00003  * nodeIndexonlyscan.h
00004  *
00005  *
00006  *
00007  * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group
00008  * Portions Copyright (c) 1994, Regents of the University of California
00009  *
00010  * src/include/executor/nodeIndexonlyscan.h
00011  *
00012  *-------------------------------------------------------------------------
00013  */
00014 #ifndef NODEINDEXONLYSCAN_H
00015 #define NODEINDEXONLYSCAN_H
00016 
00017 #include "nodes/execnodes.h"
00018 
00019 extern IndexOnlyScanState *ExecInitIndexOnlyScan(IndexOnlyScan *node, EState *estate, int eflags);
00020 extern TupleTableSlot *ExecIndexOnlyScan(IndexOnlyScanState *node);
00021 extern void ExecEndIndexOnlyScan(IndexOnlyScanState *node);
00022 extern void ExecIndexOnlyMarkPos(IndexOnlyScanState *node);
00023 extern void ExecIndexOnlyRestrPos(IndexOnlyScanState *node);
00024 extern void ExecReScanIndexOnlyScan(IndexOnlyScanState *node);
00025 
00026 #endif   /* NODEINDEXONLYSCAN_H */