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

Function AR_EXP_ToString

src/arithmetic/arithmetic_expression.c:905–910  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

903}
904
905void AR_EXP_ToString(const AR_ExpNode *root, char **str) {
906 size_t str_size = 0;
907 size_t bytes_written = 0;
908 *str = NULL;
909 _AR_EXP_ToString(root, str, &str_size, &bytes_written);
910}
911
912inline const char *AR_EXP_GetFuncName(const AR_ExpNode *exp) {
913 ASSERT(exp != NULL);

Callers 3

_FilterTree_PrintFunction · 0.85
ValueHashJoinToStringFunction · 0.85
_compareExpressionsFunction · 0.85

Calls 1

_AR_EXP_ToStringFunction · 0.85

Tested by 1

_compareExpressionsFunction · 0.68