【资源池化】
SPQ多机并行支持索引类扫描
This commit is contained in:
@ -19,5 +19,14 @@
|
||||
extern BitmapHeapScanState* ExecInitBitmapHeapScan(BitmapHeapScan* node, EState* estate, int eflags);
|
||||
extern void ExecEndBitmapHeapScan(BitmapHeapScanState* node);
|
||||
extern void ExecReScanBitmapHeapScan(BitmapHeapScanState* node);
|
||||
extern void BitmapHeapPrefetchNext(BitmapHeapScanState* node, TableScanDesc scan, const TIDBitmap* tbm,
|
||||
TBMIterator** prefetch_iterator);
|
||||
extern void ExecInitPartitionForBitmapHeapScan(BitmapHeapScanState* scanstate, EState* estate);
|
||||
extern TupleTableSlot* BitmapHbucketTblNext(BitmapHeapScanState* node);
|
||||
extern bool TableScanBitmapNextTuple(TableScanDesc scan, TBMIterateResult *tbmres, TupleTableSlot *slot);
|
||||
extern bool TableScanBitmapNextBlock(TableScanDesc scan, TBMIterateResult *tbmres, bool* has_cur_xact_write);
|
||||
extern int TableScanBitmapNextTargetRel(TableScanDesc scan, BitmapHeapScanState *node);
|
||||
extern TupleTableSlot* ExecBitmapHeapScan(PlanState* state);
|
||||
extern void ExecInitPartitionForBitmapHeapScan(BitmapHeapScanState* scanstate, EState* estate);
|
||||
|
||||
#endif /* NODEBITMAPHEAPSCAN_H */
|
||||
|
||||
Reference in New Issue
Block a user