remove error msg

This commit is contained in:
dapan1121 2021-01-15 18:11:43 +08:00
parent 68ef3a245f
commit 4527694b44
1 changed files with 4 additions and 0 deletions

View File

@ -1428,6 +1428,10 @@ int32_t tscDoLocalMerge(SSqlObj *pSql) {
tscResetForNextRetrieve(pRes);
if (pSql->signature != pSql || pRes == NULL || pRes->pLocalReducer == NULL) { // all data has been processed
if (pRes->code == TSDB_CODE_SUCCESS) {
return pRes->code;
}
tscError("%p local merge abort due to error occurs, code:%s", pSql, tstrerror(pRes->code));
return pRes->code;
}