fix ci issue

This commit is contained in:
54liuyao 2024-11-05 11:11:23 +08:00
parent 35a1d79b98
commit ecf8f92ac8
1 changed files with 4 additions and 2 deletions

View File

@ -2134,7 +2134,8 @@ static int32_t generateSessionScanRange(SStreamScanInfo* pInfo, SSDataBlock* pSr
if (tSimpleHashGet(pScanRange, &checkKey, sizeof(SSessionKey)) != NULL) { if (tSimpleHashGet(pScanRange, &checkKey, sizeof(SSessionKey)) != NULL) {
continue; continue;
} }
tSimpleHashPut(pScanRange, &checkKey, sizeof(SSessionKey), NULL, 0); code = tSimpleHashPut(pScanRange, &checkKey, sizeof(SSessionKey), NULL, 0);
QUERY_CHECK_CODE(code, lino, _end);
code = colDataSetVal(pDestStartCol, i, (const char*)&startWin.win.skey, false); code = colDataSetVal(pDestStartCol, i, (const char*)&startWin.win.skey, false);
QUERY_CHECK_CODE(code, lino, _end); QUERY_CHECK_CODE(code, lino, _end);
@ -2310,7 +2311,8 @@ static int32_t generateIntervalScanRange(SStreamScanInfo* pInfo, SSDataBlock* pS
if (tSimpleHashGet(pScanRange, &checkKey, sizeof(SSessionKey)) != NULL) { if (tSimpleHashGet(pScanRange, &checkKey, sizeof(SSessionKey)) != NULL) {
continue; continue;
} }
tSimpleHashPut(pScanRange, &checkKey, sizeof(SSessionKey), NULL, 0); code = tSimpleHashPut(pScanRange, &checkKey, sizeof(SSessionKey), NULL, 0);
QUERY_CHECK_CODE(code, lino, _end);
code = colDataSetVal(pStartTsCol, pDestBlock->info.rows, (const char*)(&win.skey), false); code = colDataSetVal(pStartTsCol, pDestBlock->info.rows, (const char*)(&win.skey), false);
QUERY_CHECK_CODE(code, lino, _end); QUERY_CHECK_CODE(code, lino, _end);