Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / include / executor / nodeBitmapAnd.h
bloba3545bd9592b702d474fc739bc9064c5cd226efa
1 /*-------------------------------------------------------------------------
3 * nodeBitmapAnd.h
7 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
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 */