Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
45
void 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
NodeByLabelScanFree
Function · 0.85
IndexScanFree
Function · 0.85
Calls
2
QGNode_Free
Function · 0.85
rm_free
Function · 0.85
Tested by
no test coverage detected