mirror of
https://github.com/postgres/postgres.git
synced 2026-02-03 20:40:14 -05:00
bits indicating which optional capabilities can actually be exercised at runtime. This will allow Sort and Material nodes, and perhaps later other nodes, to avoid unnecessary overhead in common cases. This commit just adds the infrastructure and arranges to pass the correct flag values down to plan nodes; none of the actual optimizations are here yet. I'm committing this separately in case anyone wants to measure the added overhead. (It should be negligible.) Simon Riggs and Tom Lane
25 lines
950 B
C
25 lines
950 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeBitmapHeapscan.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeBitmapHeapscan.h,v 1.2 2006/02/28 04:10:28 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEBITMAPHEAPSCAN_H
|
|
#define NODEBITMAPHEAPSCAN_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern int ExecCountSlotsBitmapHeapScan(BitmapHeapScan *node);
|
|
extern BitmapHeapScanState *ExecInitBitmapHeapScan(BitmapHeapScan *node, EState *estate, int eflags);
|
|
extern TupleTableSlot *ExecBitmapHeapScan(BitmapHeapScanState *node);
|
|
extern void ExecEndBitmapHeapScan(BitmapHeapScanState *node);
|
|
extern void ExecBitmapHeapReScan(BitmapHeapScanState *node, ExprContext *exprCtxt);
|
|
|
|
#endif /* NODEBITMAPHEAPSCAN_H */
|