From 527c3d59a9192c673a99d0ffc809d6e0be82e5c5 Mon Sep 17 00:00:00 2001 From: 54liuyao <54liuyao@163.com> Date: Wed, 6 Nov 2024 11:44:02 +0800 Subject: [PATCH] fix issue --- source/libs/executor/src/streamfilloperator.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/libs/executor/src/streamfilloperator.c b/source/libs/executor/src/streamfilloperator.c index cd7ab547d4..ccf1f7c9e5 100644 --- a/source/libs/executor/src/streamfilloperator.c +++ b/source/libs/executor/src/streamfilloperator.c @@ -1270,7 +1270,9 @@ static int32_t doStreamForceFillImpl(SOperatorInfo* pOperator) { TSKEY resTs = tsCol[i]; while (resTs < (*pTs)) { 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)) { break; }