Try fix tests.

This commit is contained in:
Nikolai Kochetov 2020-05-18 19:19:43 +03:00
parent deeae66455
commit 0ce9afd1e3

View File

@ -31,6 +31,9 @@ void PipelineExecutingBlockInputStream::readPrefixImpl()
Block PipelineExecutingBlockInputStream::readImpl()
{
if (!executor)
executor = std::make_unique<PullingPipelineExecutor>(*pipeline);
Block block;
while (executor->pull(block))
{