Fix pg_dump bug in the database-level collation patch. "datcollate" and
[PostgreSQL.git] / src / include / executor / nodeBitmapAnd.h
blob94ef4b057e35f9c477d546db69c06a2a8b02ceba
1 /*-------------------------------------------------------------------------
3 * nodeBitmapAnd.h
7 * Portions Copyright (c) 1996-2008, 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 */