You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
src/backend/distributed/utils/background_jobs.c
In the function static TaskExecutionStatus
TaskConcurrentCancelCheck()
if (!task || task->status == BACKGROUND_TASK_STATUS_CANCELLING) \\ entering the condition if the task value is NULL
{
...
ereport(LOG, (errmsg(
"task jobid/taskid is cancelled: %ld/%ld",
task->jobid, task->taskid))); \\ NULL is dereferenced
The text was updated successfully, but these errors were encountered:
src/backend/distributed/utils/background_jobs.c
In the function static TaskExecutionStatus
TaskConcurrentCancelCheck()
The text was updated successfully, but these errors were encountered: