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

Function ValueHashJoinClone

src/execution_plan/ops/op_value_hash_join.c:353–362  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

351}
352
353static inline OpBase *ValueHashJoinClone
354(
355 const ExecutionPlan *plan,
356 const OpBase *opBase
357) {
358 ASSERT(opBase->type == OPType_VALUE_HASH_JOIN);
359 OpValueHashJoin *op = (OpValueHashJoin *)opBase;
360 return NewValueHashJoin(plan, AR_EXP_Clone(op->lhs_exp),
361 AR_EXP_Clone(op->rhs_exp));
362}
363
364// frees ValueHashJoin
365static void ValueHashJoinFree(OpBase *ctx) {

Callers

nothing calls this directly

Calls 2

NewValueHashJoinFunction · 0.85
AR_EXP_CloneFunction · 0.85

Tested by

no test coverage detected