fix(query): set retrieve completed flag for exchange operator.

This commit is contained in:
Haojun Liao 2022-11-07 18:27:26 +08:00
parent 9932fa6bf0
commit d016fc9d47
1 changed files with 4 additions and 0 deletions

View File

@ -1933,6 +1933,10 @@ static void concurrentlyLoadRemoteDataImpl(SOperatorInfo* pOperator, SExchangeIn
}
}
if (completed == totalSources) {
setAllSourcesCompleted(pOperator, startTs);
}
return;
}