未验证 提交 5791426b 编写于 作者: S Shengliang Guan 提交者: GitHub

Merge pull request #20276 from taosdata/fix/TD-22986

fix:return empty ssdatablock
......@@ -1913,7 +1913,9 @@ FETCH_NEXT_BLOCK:
doFilter(pInfo->pRes, pOperator->exprSupp.pFilterInfo, NULL);
pInfo->pRes->info.dataLoad = 1;
blockDataUpdateTsWindow(pInfo->pRes, pInfo->primaryTsIndex);
return pInfo->pRes;
if (pInfo->pRes->info.rows > 0) {
return pInfo->pRes;
}
} break;
case STREAM_SCAN_FROM_DELETE_DATA: {
generateScanRange(pInfo, pInfo->pUpdateDataRes, pInfo->pUpdateRes);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册