1 | /*------------------------------------------------------------------------- |
---|---|
2 | * |
3 | * nodeBitmapHeapscan.h |
4 | * |
5 | * |
6 | * |
7 | * Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group |
8 | * Portions Copyright (c) 1994, Regents of the University of California |
9 | * |
10 | * src/include/executor/nodeBitmapHeapscan.h |
11 | * |
12 | *------------------------------------------------------------------------- |
13 | */ |
14 | #ifndef NODEBITMAPHEAPSCAN_H |
15 | #define NODEBITMAPHEAPSCAN_H |
16 | |
17 | #include "nodes/execnodes.h" |
18 | #include "access/parallel.h" |
19 | |
20 | extern BitmapHeapScanState *ExecInitBitmapHeapScan(BitmapHeapScan *node, EState *estate, int eflags); |
21 | extern void ExecEndBitmapHeapScan(BitmapHeapScanState *node); |
22 | extern void ExecReScanBitmapHeapScan(BitmapHeapScanState *node); |
23 | extern void ExecBitmapHeapEstimate(BitmapHeapScanState *node, |
24 | ParallelContext *pcxt); |
25 | extern void ExecBitmapHeapInitializeDSM(BitmapHeapScanState *node, |
26 | ParallelContext *pcxt); |
27 | extern void ExecBitmapHeapReInitializeDSM(BitmapHeapScanState *node, |
28 | ParallelContext *pcxt); |
29 | extern void ExecBitmapHeapInitializeWorker(BitmapHeapScanState *node, |
30 | ParallelWorkerContext *pwcxt); |
31 | |
32 | #endif /* NODEBITMAPHEAPSCAN_H */ |
33 |