2005-04-19 18:35:18 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeBitmapIndexscan.h
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
2007-01-05 17:20:05 -05:00
|
|
|
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
2005-04-19 18:35:18 -04:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
2007-01-05 17:20:05 -05:00
|
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeBitmapIndexscan.h,v 1.4 2007/01/05 22:19:54 momjian Exp $
|
2005-04-19 18:35:18 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef NODEBITMAPINDEXSCAN_H
|
|
|
|
|
#define NODEBITMAPINDEXSCAN_H
|
|
|
|
|
|
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
|
|
|
|
|
|
extern int ExecCountSlotsBitmapIndexScan(BitmapIndexScan *node);
|
2006-02-27 23:10:28 -05:00
|
|
|
extern BitmapIndexScanState *ExecInitBitmapIndexScan(BitmapIndexScan *node, EState *estate, int eflags);
|
2005-04-19 18:35:18 -04:00
|
|
|
extern Node *MultiExecBitmapIndexScan(BitmapIndexScanState *node);
|
|
|
|
|
extern void ExecEndBitmapIndexScan(BitmapIndexScanState *node);
|
|
|
|
|
extern void ExecBitmapIndexReScan(BitmapIndexScanState *node, ExprContext *exprCtxt);
|
|
|
|
|
|
|
|
|
|
#endif /* NODEBITMAPINDEXSCAN_H */
|