2005-04-19 18:35:18 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeBitmapHeapscan.h
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
2016-01-02 13:33:40 -05:00
|
|
|
* Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
|
2005-04-19 18:35:18 -04:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
2010-09-20 16:08:53 -04:00
|
|
|
* src/include/executor/nodeBitmapHeapscan.h
|
2005-04-19 18:35:18 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef NODEBITMAPHEAPSCAN_H
|
|
|
|
|
#define NODEBITMAPHEAPSCAN_H
|
|
|
|
|
|
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
|
|
2006-02-27 23:10:28 -05:00
|
|
|
extern BitmapHeapScanState *ExecInitBitmapHeapScan(BitmapHeapScan *node, EState *estate, int eflags);
|
2005-04-19 18:35:18 -04:00
|
|
|
extern TupleTableSlot *ExecBitmapHeapScan(BitmapHeapScanState *node);
|
|
|
|
|
extern void ExecEndBitmapHeapScan(BitmapHeapScanState *node);
|
2010-07-12 13:01:06 -04:00
|
|
|
extern void ExecReScanBitmapHeapScan(BitmapHeapScanState *node);
|
2005-04-19 18:35:18 -04:00
|
|
|
|
|
|
|
|
#endif /* NODEBITMAPHEAPSCAN_H */
|