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

Function _AR_EXP_OpResolveVariables

src/arithmetic/arithmetic_expression.c:362–369  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

360}
361
362static void _AR_EXP_OpResolveVariables(AR_ExpNode *node, const Record r) {
363 ASSERT(node->type == AR_EXP_OP);
364
365 for(uint i = 0; i < node->op.child_count; i++) {
366 AR_ExpNode *child = node->op.children[i];
367 _AR_EXP_ResolveVariables(child, r);
368 }
369}
370
371void _AR_EXP_OperandResolveVariables(AR_ExpNode *node, const Record r) {
372 ASSERT(node->type == AR_EXP_OPERAND);

Callers 1

_AR_EXP_ResolveVariablesFunction · 0.85

Calls 1

_AR_EXP_ResolveVariablesFunction · 0.85

Tested by

no test coverage detected