2005-04-19 18:35:18 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeBitmapAnd.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/nodeBitmapAnd.h,v 1.4 2007/01/05 22:19:54 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 */
|