1 /*-------------------------------------------------------------------------
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
12 *-------------------------------------------------------------------------
14 #ifndef NODEBITMAPAND_H
15 #define NODEBITMAPAND_H
17 #include "nodes/execnodes.h"
19 extern int ExecCountSlotsBitmapAnd(BitmapAnd
*node
);
20 extern BitmapAndState
*ExecInitBitmapAnd(BitmapAnd
*node
, EState
*estate
, int eflags
);
21 extern Node
*MultiExecBitmapAnd(BitmapAndState
*node
);
22 extern void ExecEndBitmapAnd(BitmapAndState
*node
);
23 extern void ExecReScanBitmapAnd(BitmapAndState
*node
, ExprContext
*exprCtxt
);
25 #endif /* NODEBITMAPAND_H */