From 67237ae6156df93cc02e53f8596c8b44b2fd2191 Mon Sep 17 00:00:00 2001 From: 54liuyao <54liuyao@163.com> Date: Wed, 9 Oct 2024 10:07:39 +0800 Subject: [PATCH] fix ci issue --- source/libs/executor/src/streamtimesliceoperator.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/libs/executor/src/streamtimesliceoperator.c b/source/libs/executor/src/streamtimesliceoperator.c index fc331664dd..d17ca0e100 100644 --- a/source/libs/executor/src/streamtimesliceoperator.c +++ b/source/libs/executor/src/streamtimesliceoperator.c @@ -1662,7 +1662,8 @@ static int32_t doDeleteTimeSliceResult(SStreamAggSupporter* pAggSup, SSDataBlock if (key.ts > endCalTs) { break; } - (void)tSimpleHashRemove(pUpdatedMap, &key, sizeof(SWinKey)); + int32_t tmpRes = tSimpleHashRemove(pUpdatedMap, &key, sizeof(SWinKey)); + qTrace("delete stream interp result at line %d res: %s", __func__, __LINE__, tstrerror(tmpRes)); pAggSup->stateStore.streamStateDel(pAggSup->pState, &key); if (winCode != TSDB_CODE_SUCCESS) {