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

Function ErrorCtx_SetError

src/errors/errors.c:69–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69void ErrorCtx_SetError(const char *err_fmt, ...) {
70 // Set the new error
71 va_list valist;
72 va_start(valist, err_fmt);
73 _ErrorCtx_SetError(err_fmt, valist);
74 va_end(valist);
75}
76
77/* An error was encountered during evaluation, and has already been set in the ErrorCtx.
78 * If an exception handler has been set, exit this routine and return to

Callers 15

QueryCtx_LockForCommitFunction · 0.85
FilterTree_ValidFunction · 0.85
abort_and_check_timeoutFunction · 0.85
_index_operation_deleteFunction · 0.85
_index_operationFunction · 0.85
_queryFunction · 0.85
ExecutionCtx_FromQueryFunction · 0.85
Error_SITypeMismatchFunction · 0.85

Calls 1

_ErrorCtx_SetErrorFunction · 0.85

Tested by

no test coverage detected