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

Function AllNodeScanFree

src/execution_plan/ops/op_all_node_scan.c:103–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101}
102
103static void AllNodeScanFree(OpBase *ctx) {
104 AllNodeScan *op = (AllNodeScan *)ctx;
105 if(op->iter) {
106 DataBlockIterator_Free(op->iter);
107 op->iter = NULL;
108 }
109
110 if(op->child_record) {
111 OpBase_DeleteRecord(op->child_record);
112 op->child_record = NULL;
113 }
114}
115

Callers

nothing calls this directly

Calls 2

DataBlockIterator_FreeFunction · 0.85
OpBase_DeleteRecordFunction · 0.85

Tested by

no test coverage detected