fix: continue execution after filter in project produces zero rows for next group

This commit is contained in:
slzhou@taodata.com 2022-07-21 11:35:02 +08:00
parent d9f7c34a79
commit 318360c287
1 changed files with 1 additions and 1 deletions

View File

@ -3355,7 +3355,7 @@ static SSDataBlock* doProjectOperation(SOperatorInfo* pOperator) {
break;
}
if (status == PROJECT_RETRIEVE_CONTINUE) {
if (status == PROJECT_RETRIEVE_CONTINUE || pInfo->pRes->info.rows == 0) {
continue;
} else if (status == PROJECT_RETRIEVE_DONE) {
break;