mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
Processors for IStorageSystemOneBlock.
This commit is contained in:
parent
61154da744
commit
dc49635ed4
@ -42,7 +42,10 @@ public:
|
||||
UInt64 num_rows = res_columns.at(0)->size();
|
||||
Chunk chunk(std::move(res_columns), num_rows);
|
||||
|
||||
return { Pipe(std::make_shared<SourceFromSingleChunk>(sample_block, std::move(chunk))) };
|
||||
Pipes pipes;
|
||||
pipes.emplace_back(std::make_shared<SourceFromSingleChunk>(sample_block, std::move(chunk)));
|
||||
|
||||
return pipes;
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user