| 157 | } |
| 158 | |
| 159 | void Error_UnsupportedASTOperator(const cypher_operator_t *op) { |
| 160 | ASSERT(op != NULL); |
| 161 | |
| 162 | ErrorCtx_SetError("RedisGraph does not currently support %s", op->str); |
| 163 | } |
| 164 | |
| 165 | inline void Error_InvalidPropertyValue(void) { |
| 166 | ErrorCtx_SetError("Property values can only be of primitive types or arrays of primitive types"); |
no test coverage detected