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

Function Error_UnsupportedASTNodeType

src/errors/errors.c:151–157  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

149}
150
151void Error_UnsupportedASTNodeType(const cypher_astnode_t *node) {
152 ASSERT(node != NULL);
153
154 cypher_astnode_type_t type = cypher_astnode_type(node);
155 const char *type_str = cypher_astnode_typestr(type);
156 ErrorCtx_SetError("RedisGraph does not currently support %s", type_str);
157}
158
159void Error_UnsupportedASTOperator(const cypher_operator_t *op) {
160 ASSERT(op != NULL);

Callers 2

_visit_breakFunction · 0.85
_AR_EXP_FromASTNodeFunction · 0.85

Calls 1

ErrorCtx_SetErrorFunction · 0.85

Tested by

no test coverage detected