Fix StorageBuffer/

This commit is contained in:
Nikolai Kochetov 2020-01-30 13:30:48 +03:00
parent 00546498b6
commit 3c4fe4f20e

View File

@ -207,7 +207,7 @@ Pipes StorageBuffer::readWithProcessors(
query_info.input_sorting_info = query_info.order_by_optimizer->getInputOrder(destination);
/// The destination table has the same structure of the requested columns and we can simply read blocks from there.
pipes_from_dst = readAsPipes(destination, column_names, query_info, context, processed_stage, max_block_size, num_streams));
pipes_from_dst = readAsPipes(destination, column_names, query_info, context, processed_stage, max_block_size, num_streams);
}
else
{