Merge pull request #23833 from taosdata/fix/TD-27532

stream event reload state
This commit is contained in:
Haojun Liao 2023-11-28 17:48:38 +08:00 committed by GitHub
commit 4439c1e4f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -603,7 +603,7 @@ void streamEventReloadState(SOperatorInfo* pOperator) {
pSeKeyBuf[i].groupId, i); pSeKeyBuf[i].groupId, i);
getSessionWindowInfoByKey(pAggSup, pSeKeyBuf + i, &curInfo.winInfo); getSessionWindowInfoByKey(pAggSup, pSeKeyBuf + i, &curInfo.winInfo);
setEventWindowFlag(pAggSup, &curInfo); setEventWindowFlag(pAggSup, &curInfo);
if (!curInfo.pWinFlag->startFlag || curInfo.pWinFlag->endFlag) { if (!curInfo.pWinFlag->startFlag || !curInfo.pWinFlag->endFlag) {
continue; continue;
} }