fix: fix error in indef operator filter processing

This commit is contained in:
shenglian zhou 2022-07-20 21:58:03 +08:00
parent 33aa741979
commit 4211db2ec4
1 changed files with 1 additions and 1 deletions

View File

@ -3957,7 +3957,7 @@ static SSDataBlock* doApplyIndefinitFunction(SOperatorInfo* pOperator) {
doFilter(pIndefInfo->pCondition, pInfo->pRes);
size_t rows = pInfo->pRes->info.rows;
if (rows >= 0) {
if (rows > 0 || pOperator->status == OP_EXEC_DONE) {
break;
}
}