Merge pull request #41949 from ClickHouse/improvement-from-38083

Earlier throw exception in PullingAsyncPipelineExecutor.
This commit is contained in:
Nikolai Kochetov 2022-10-03 13:05:58 +02:00 committed by GitHub
commit dcfb8a1131
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -127,6 +127,7 @@ bool PullingAsyncPipelineExecutor::pull(Chunk & chunk, uint64_t milliseconds)
if (lazy_format)
{
chunk = lazy_format->getChunk(milliseconds);
data->rethrowExceptionIfHas();
return true;
}