MCPcopy Create free account
hub / github.com/apache/cloudberry / ExecBitmapHeapScan

Function ExecBitmapHeapScan

src/backend/executor/nodeBitmapHeapscan.c:640–648  ·  view source on GitHub ↗

---------------------------------------------------------------- * ExecBitmapHeapScan(node) * ---------------------------------------------------------------- */

Source from the content-addressed store, hash-verified

638 * ----------------------------------------------------------------
639 */
640static TupleTableSlot *
641ExecBitmapHeapScan(PlanState *pstate)
642{
643 BitmapHeapScanState *node = castNode(BitmapHeapScanState, pstate);
644
645 return ExecScan(&node->ss,
646 (ExecScanAccessMtd) BitmapHeapNext,
647 (ExecScanRecheckMtd) BitmapHeapRecheck);
648}
649
650/* ----------------------------------------------------------------
651 * ExecReScanBitmapHeapScan(node)

Callers

nothing calls this directly

Calls 1

ExecScanFunction · 0.85

Tested by

no test coverage detected