2005-04-19 18:35:18 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeBitmapAnd.h
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
2009-01-01 12:24:05 -05:00
|
|
|
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
2005-04-19 18:35:18 -04:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
2009-01-01 12:24:05 -05:00
|
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeBitmapAnd.h,v 1.6 2009/01/01 17:23:59 momjian Exp $
|
2005-04-19 18:35:18 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef NODEBITMAPAND_H
|
|
|
|
|
#define NODEBITMAPAND_H
|
|
|
|
|
|
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
|
|
|
|
|
|
extern int ExecCountSlotsBitmapAnd(BitmapAnd *node);
|
2006-02-27 23:10:28 -05:00
|
|
|
extern BitmapAndState *ExecInitBitmapAnd(BitmapAnd *node, EState *estate, int eflags);
|
2005-04-19 18:35:18 -04:00
|
|
|
extern Node *MultiExecBitmapAnd(BitmapAndState *node);
|
|
|
|
|
extern void ExecEndBitmapAnd(BitmapAndState *node);
|
|
|
|
|
extern void ExecReScanBitmapAnd(BitmapAndState *node, ExprContext *exprCtxt);
|
|
|
|
|
|
|
|
|
|
#endif /* NODEBITMAPAND_H */
|