fix issue

This commit is contained in:
54liuyao 2024-11-06 11:44:02 +08:00
parent 4d925fa106
commit 527c3d59a9
1 changed files with 3 additions and 1 deletions

View File

@ -1270,7 +1270,9 @@ static int32_t doStreamForceFillImpl(SOperatorInfo* pOperator) {
TSKEY resTs = tsCol[i]; TSKEY resTs = tsCol[i];
while (resTs < (*pTs)) { while (resTs < (*pTs)) {
SWinKey key = {.groupId = groupId, .ts = resTs}; SWinKey key = {.groupId = groupId, .ts = resTs};
taosArrayPush(pInfo->pUpdated, &key); void* pPushRes = taosArrayPush(pInfo->pUpdated, &key);
QUERY_CHECK_NULL(pPushRes, code, lino, _end, terrno);
if (IS_FILL_CONST_VALUE(pFillSup->type)) { if (IS_FILL_CONST_VALUE(pFillSup->type)) {
break; break;
} }