MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / AllNodeScanReset

Function AllNodeScanReset

src/execution_plan/ops/op_all_node_scan.c:92–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90}
91
92static OpResult AllNodeScanReset(OpBase *op) {
93 AllNodeScan *allNodeScan = (AllNodeScan *)op;
94 if(allNodeScan->iter) DataBlockIterator_Reset(allNodeScan->iter);
95 return OP_OK;
96}
97
98static inline OpBase *AllNodeScanClone(const ExecutionPlan *plan, const OpBase *opBase) {
99 ASSERT(opBase->type == OPType_ALL_NODE_SCAN);

Callers

nothing calls this directly

Calls 1

DataBlockIterator_ResetFunction · 0.85

Tested by

no test coverage detected