Skip to content

Commit 9398411

Browse files
author
Tony Zhang
committed
fix ci return value unhandled error
1 parent 0b7a87c commit 9398411

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

source/dnode/vnode/src/meta/metaCache.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1054,7 +1054,7 @@ int32_t metaStableTagFilterCacheUpdateUid(SMeta* pMeta,
10541054
}
10551055
} else {
10561056
// STABLE_TAG_FILTER_CACHE_ADD_TABLE
1057-
taosArrayPush(*pArray, &pDroppedTable->uid);
1057+
void* _tmp = taosArrayPush(*pArray, &pDroppedTable->uid);
10581058
}
10591059
}
10601060
}

source/libs/executor/src/executil.c

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ static void extractTagDataEntry(
806806
STagDataEntry entry = {0};
807807
entry.colId = pColNode->colId;
808808
entry.pValueNode = (SNode*)pValueNode;
809-
taosArrayPush(pIdWithValue, &entry);
809+
void* _tmp = taosArrayPush(pIdWithValue, &entry);
810810
STagDataEntry* pLastEntry = taosArrayGetLast(pIdWithValue);
811811
((SValueNode*)pLastEntry->pValueNode)->node.resType = pColNode->node.resType;
812812
}
@@ -1991,7 +1991,7 @@ static void extractTagColId(SOperatorNode* pOpNode, SArray* pColIdArray) {
19911991
(SColumnNode*)pLeft : (SColumnNode*)pRight;
19921992

19931993
col_id_t colId = pColNode->colId;
1994-
taosArrayPush(pColIdArray, &colId);
1994+
void* _tmp = taosArrayPush(pColIdArray, &colId);
19951995
}
19961996

19971997
static int32_t buildTagCondKey(
@@ -2093,7 +2093,8 @@ int32_t getTableList(void* pVnode, SScanPhysiNode* pScanNode, SNode* pTagCond, S
20932093
char* pTagCondKey;
20942094
int32_t tagCondKeyLen;
20952095
SArray* pTagColIds = NULL;
2096-
buildTagCondKey(pTagCond, &pTagCondKey, &tagCondKeyLen, &pTagColIds);
2096+
code = buildTagCondKey(pTagCond, &pTagCondKey, &tagCondKeyLen, &pTagColIds);
2097+
QUERY_CHECK_CODE(code, lino, _error);
20972098
taosArrayDestroy(pTagColIds);
20982099
code = pStorageAPI->metaFn.getStableCachedTableList(
20992100
pVnode, pScanNode->suid, pTagCondKey, tagCondKeyLen,

0 commit comments

Comments
 (0)