Merge pull request #24013 from taosdata/fix/TD-27795

set event window rows
This commit is contained in:
Haojun Liao 2023-12-11 18:40:02 +08:00 committed by GitHub
commit 1bf3f2d1bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ int32_t updateEventWindowInfo(SStreamAggSupporter* pAggSup, SEventWindowInfo* pW
for (int32_t i = start; i < rows; ++i) {
if (pTsData[i] >= maxTs) {
return i - 1 - start;
return i - start;
}
if (pWin->skey > pTsData[i]) {