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

Function ExecutionPlan_PreparePlan

src/execution_plan/execution_plan.c:376–381  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

374}
375
376void ExecutionPlan_PreparePlan(ExecutionPlan *plan) {
377 // Plan should be prepared only once.
378 ASSERT(!plan->prepared);
379 optimizePlan(plan);
380 plan->prepared = true;
381}
382
383inline rax *ExecutionPlan_GetMappings(const ExecutionPlan *plan) {
384 ASSERT(plan && plan->record_map);

Callers 2

_ExecuteQueryFunction · 0.85
Graph_ExplainFunction · 0.85

Calls 1

optimizePlanFunction · 0.85

Tested by

no test coverage detected