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

Function NodeScanCtx_Free

src/execution_plan/ops/shared/scan_functions.c:45–55  ·  view source on GitHub ↗

frees a context

Source from the content-addressed store, hash-verified

43
44// frees a context
45void NodeScanCtx_Free
46(
47 NodeScanCtx *ctx // context
48) {
49 ASSERT(ctx != NULL);
50 ASSERT(ctx->n != NULL);
51
52 QGNode_Free(ctx->n);
53
54 rm_free(ctx);
55}

Callers 2

NodeByLabelScanFreeFunction · 0.85
IndexScanFreeFunction · 0.85

Calls 2

QGNode_FreeFunction · 0.85
rm_freeFunction · 0.85

Tested by

no test coverage detected