mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-10 01:57:37 +08:00
25 lines
816 B
C
25 lines
816 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeBitmapAnd.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeBitmapAnd.h,v 1.7 2009/09/27 21:10:53 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEBITMAPAND_H
|
|
#define NODEBITMAPAND_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern BitmapAndState *ExecInitBitmapAnd(BitmapAnd *node, EState *estate, int eflags);
|
|
extern Node *MultiExecBitmapAnd(BitmapAndState *node);
|
|
extern void ExecEndBitmapAnd(BitmapAndState *node);
|
|
extern void ExecReScanBitmapAnd(BitmapAndState *node, ExprContext *exprCtxt);
|
|
|
|
#endif /* NODEBITMAPAND_H */
|