adj query operator result

This commit is contained in:
54liuyao 2024-07-23 11:33:00 +08:00
parent 1d35ea137a
commit 2522e9d3b8
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ static int32_t initExchangeOperator(SExchangePhysiNode* pExNode, SExchangeInfo*
SExchangeSrcIndex idx = {.srcIdx = i, .inUseIdx = -1};
int32_t code =
tSimpleHashPut(pInfo->pHashSources, &pNode->addr.nodeId, sizeof(pNode->addr.nodeId), &idx, sizeof(idx));
if (code != TSDB_CODE_SUCCESS) {
if (pInfo->pHashSources && code != TSDB_CODE_SUCCESS) {
qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
return code;
}