TODO Consider augmenting libcypher-parser so that we don't need to perform this work in-module.
| 539 | // TODO Consider augmenting libcypher-parser so that we don't need to perform this |
| 540 | // work in-module. |
| 541 | inline long AST_ParseIntegerNode |
| 542 | ( |
| 543 | const cypher_astnode_t *int_node |
| 544 | ) { |
| 545 | ASSERT(int_node); |
| 546 | |
| 547 | const char *value_str = cypher_ast_integer_get_valuestr(int_node); |
| 548 | return strtol(value_str, NULL, 0); |
| 549 | } |
| 550 | |
| 551 | bool AST_ClauseContainsAggregation |
| 552 | ( |
no outgoing calls
no test coverage detected