fix issue
This commit is contained in:
parent
4d925fa106
commit
527c3d59a9
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue