fix:[TD-32010] code rewrite

This commit is contained in:
wangmm0220 2024-09-14 16:18:15 +08:00
parent 54eeefba7e
commit 0da27973a7
1 changed files with 3 additions and 2 deletions

View File

@ -1282,8 +1282,9 @@ SRequestObj* launchQueryImpl(SRequestObj* pRequest, SQuery* pQuery, bool keepQue
}
}
if (TSDB_CODE_SUCCESS == code) {
code = handleQueryExecRsp(pRequest);
int ret = handleQueryExecRsp(pRequest);
if (TSDB_CODE_SUCCESS != ret) {
tscError("0x%" PRIx64 " handleQueryExecRsp,code:%d,QID:0x%" PRIx64, pRequest->self, ret, pRequest->requestId);
}
if (TSDB_CODE_SUCCESS != code) {