mirror of
https://github.com/postgres/postgres.git
synced 2026-02-03 20:40:14 -05:00
Similar to commits14aec03502,7e735035f2anddddf4cdc33, this commit makes the order of header file inclusion consistent in more places. Author: Vignesh C Reviewed-by: Amit Kapila Discussion: https://postgr.es/m/CALDaNm2Sznv8RR6Ex-iJO6xAdsxgWhCoETkaYX=+9DW3q0QCfA@mail.gmail.com
32 lines
1.2 KiB
C
32 lines
1.2 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeBitmapHeapscan.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* src/include/executor/nodeBitmapHeapscan.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEBITMAPHEAPSCAN_H
|
|
#define NODEBITMAPHEAPSCAN_H
|
|
|
|
#include "access/parallel.h"
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern BitmapHeapScanState *ExecInitBitmapHeapScan(BitmapHeapScan *node, EState *estate, int eflags);
|
|
extern void ExecEndBitmapHeapScan(BitmapHeapScanState *node);
|
|
extern void ExecReScanBitmapHeapScan(BitmapHeapScanState *node);
|
|
extern void ExecBitmapHeapEstimate(BitmapHeapScanState *node,
|
|
ParallelContext *pcxt);
|
|
extern void ExecBitmapHeapInitializeDSM(BitmapHeapScanState *node,
|
|
ParallelContext *pcxt);
|
|
extern void ExecBitmapHeapReInitializeDSM(BitmapHeapScanState *node,
|
|
ParallelContext *pcxt);
|
|
extern void ExecBitmapHeapInitializeWorker(BitmapHeapScanState *node,
|
|
ParallelWorkerContext *pwcxt);
|
|
|
|
#endif /* NODEBITMAPHEAPSCAN_H */
|