2005-04-19 18:35:18 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeBitmapOr.h
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
2009-01-01 12:24:05 -05:00
|
|
|
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
2005-04-19 18:35:18 -04:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
2009-01-01 12:24:05 -05:00
|
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeBitmapOr.h,v 1.6 2009/01/01 17:23:59 momjian Exp $
|
2005-04-19 18:35:18 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef NODEBITMAPOR_H
|
|
|
|
|
#define NODEBITMAPOR_H
|
|
|
|
|
|
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
|
|
|
|
|
|
extern int ExecCountSlotsBitmapOr(BitmapOr *node);
|
2006-02-27 23:10:28 -05:00
|
|
|
extern BitmapOrState *ExecInitBitmapOr(BitmapOr *node, EState *estate, int eflags);
|
2005-04-19 18:35:18 -04:00
|
|
|
extern Node *MultiExecBitmapOr(BitmapOrState *node);
|
|
|
|
|
extern void ExecEndBitmapOr(BitmapOrState *node);
|
|
|
|
|
extern void ExecReScanBitmapOr(BitmapOrState *node, ExprContext *exprCtxt);
|
|
|
|
|
|
|
|
|
|
#endif /* NODEBITMAPOR_H */
|