Fix pg_dump bug in the database-level collation patch. "datcollate" and
[PostgreSQL.git] / src / include / executor / nodeBitmapOr.h
blob7be101227519ae2a3199f69a7505a66c57fecd30
1 /*-------------------------------------------------------------------------
3 * nodeBitmapOr.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 NODEBITMAPOR_H
15 #define NODEBITMAPOR_H
17 #include "nodes/execnodes.h"
19 extern int ExecCountSlotsBitmapOr(BitmapOr *node);
20 extern BitmapOrState *ExecInitBitmapOr(BitmapOr *node, EState *estate, int eflags);
21 extern Node *MultiExecBitmapOr(BitmapOrState *node);
22 extern void ExecEndBitmapOr(BitmapOrState *node);
23 extern void ExecReScanBitmapOr(BitmapOrState *node, ExprContext *exprCtxt);
25 #endif /* NODEBITMAPOR_H */