| 149 | } |
| 150 | |
| 151 | void 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 | |
| 159 | void Error_UnsupportedASTOperator(const cypher_operator_t *op) { |
| 160 | ASSERT(op != NULL); |
no test coverage detected