~ubuntu-branches/ubuntu/hardy/postgresql-8.4/hardy-backports

« back to all changes in this revision

Viewing changes to src/include/executor/nodeBitmapOr.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-03-20 12:00:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090320120013-hogj7egc5mjncc5g
Tags: upstream-8.4~0cvs20090328
ImportĀ upstreamĀ versionĀ 8.4~0cvs20090328

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-------------------------------------------------------------------------
 
2
 *
 
3
 * nodeBitmapOr.h
 
4
 *
 
5
 *
 
6
 *
 
7
 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
 
8
 * Portions Copyright (c) 1994, Regents of the University of California
 
9
 *
 
10
 * $PostgreSQL$
 
11
 *
 
12
 *-------------------------------------------------------------------------
 
13
 */
 
14
#ifndef NODEBITMAPOR_H
 
15
#define NODEBITMAPOR_H
 
16
 
 
17
#include "nodes/execnodes.h"
 
18
 
 
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);
 
24
 
 
25
#endif   /* NODEBITMAPOR_H */