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

Function CondTraverseClone

src/execution_plan/ops/op_conditional_traverse.c:215–219  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

213}
214
215static inline OpBase *CondTraverseClone(const ExecutionPlan *plan, const OpBase *opBase) {
216 ASSERT(opBase->type == OPType_CONDITIONAL_TRAVERSE);
217 OpCondTraverse *op = (OpCondTraverse *)opBase;
218 return NewCondTraverseOp(plan, QueryCtx_GetGraph(), AlgebraicExpression_Clone(op->ae));
219}
220
221/* Frees CondTraverse */
222static void CondTraverseFree(OpBase *ctx) {

Callers

nothing calls this directly

Calls 3

NewCondTraverseOpFunction · 0.85
QueryCtx_GetGraphFunction · 0.85

Tested by

no test coverage detected