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

Function ProjectClone

src/execution_plan/ops/op_project.c:102–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

100}
101
102static OpBase *ProjectClone(const ExecutionPlan *plan, const OpBase *opBase) {
103 ASSERT(opBase->type == OPType_PROJECT);
104 OpProject *op = (OpProject *)opBase;
105 AR_ExpNode **exps;
106 array_clone_with_cb(exps, op->exps, AR_EXP_Clone);
107 return NewProjectOp(plan, exps);
108}
109
110void ProjectBindToPlan
111(

Callers

nothing calls this directly

Calls 1

NewProjectOpFunction · 0.85

Tested by

no test coverage detected