fix: subplan test compile issue

This commit is contained in:
dapan1121 2024-10-24 15:30:47 +08:00
parent 7a45984c96
commit 8cd994645b
1 changed files with 1 additions and 1 deletions

View File

@ -3137,7 +3137,7 @@ void qptExecPlan(SReadHandle* pReadHandle, SNode* pNode, SExecTaskInfo* pTaskInf
}
case QUERY_NODE_PHYSICAL_SUBPLAN: {
DataSinkHandle handle = NULL;
qptCtx.result.code = qCreateExecTask(pReadHandle, qptCtx.param.vnode.vgId, pTaskInfo->id.taskId, (SSubplan*)pNode, &pTaskInfo, &handle,
qptCtx.result.code = qCreateExecTask(pReadHandle, qptCtx.param.vnode.vgId, pTaskInfo->id.taskId, (SSubplan*)pNode, (qTaskInfo_t*)&pTaskInfo, &handle,
QPT_RAND_BOOL_V ? 0 : 1, taosStrdup("sql string"), OPTR_EXEC_MODEL_BATCH);
break;
}