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

Function _collect_aliases_in_pattern

src/ast/ast_shared.c:282–292  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

280}
281
282static void _collect_aliases_in_pattern
283(
284 const cypher_astnode_t *pattern,
285 rax *identifiers
286) {
287 uint path_count = cypher_ast_pattern_npaths(pattern);
288 for(uint i = 0; i < path_count; i ++) {
289 _collect_aliases_in_path(cypher_ast_pattern_get_path(pattern, i),
290 identifiers);
291 }
292}
293
294static void _collect_with_projections
295(

Callers 1

collect_aliases_in_scopeFunction · 0.85

Calls 1

_collect_aliases_in_pathFunction · 0.85

Tested by

no test coverage detected