mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
62 lines
2.1 KiB
C++
62 lines
2.1 KiB
C++
|
#include <Processors/QueryPlan/FinishSortingStep.h>
|
||
|
#include <Processors/Transforms/DistinctTransform.h>
|
||
|
#include <Processors/QueryPipeline.h>
|
||
|
#include <Processors/Merges/MergingSortedTransform.h>
|
||
|
#include <Processors/Transforms/PartialSortingTransform.h>
|
||
|
#include <Processors/Transforms/FinishSortingTransform.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
FinishSortingStep::FinishSortingStep(
|
||
|
const DataStream & input_stream_,
|
||
|
SortDescription prefix_description_,
|
||
|
SortDescription result_description_,
|
||
|
size_t max_block_size_,
|
||
|
UInt64 limit_)
|
||
|
: ITransformingStep(input_stream_, input_stream_)
|
||
|
, prefix_description(std::move(prefix_description_))
|
||
|
, result_description(std::move(result_description_))
|
||
|
, max_block_size(max_block_size_)
|
||
|
, limit(limit_)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void FinishSortingStep::transformPipeline(QueryPipeline & pipeline)
|
||
|
{
|
||
|
bool need_finish_sorting = (prefix_description.size() < result_description.size());
|
||
|
if (pipeline.getNumStreams() > 1)
|
||
|
{
|
||
|
UInt64 limit_for_merging = (need_finish_sorting ? 0 : limit);
|
||
|
auto transform = std::make_shared<MergingSortedTransform>(
|
||
|
pipeline.getHeader(),
|
||
|
pipeline.getNumStreams(),
|
||
|
prefix_description,
|
||
|
max_block_size, limit_for_merging);
|
||
|
|
||
|
pipeline.addPipe({ std::move(transform) });
|
||
|
}
|
||
|
|
||
|
pipeline.enableQuotaForCurrentStreams();
|
||
|
|
||
|
if (need_finish_sorting)
|
||
|
{
|
||
|
pipeline.addSimpleTransform([&](const Block & header, QueryPipeline::StreamType stream_type) -> ProcessorPtr
|
||
|
{
|
||
|
if (stream_type != QueryPipeline::StreamType::Main)
|
||
|
return nullptr;
|
||
|
|
||
|
return std::make_shared<PartialSortingTransform>(header, result_description, limit);
|
||
|
});
|
||
|
|
||
|
/// NOTE limits are not applied to the size of temporary sets in FinishSortingTransform
|
||
|
pipeline.addSimpleTransform([&](const Block & header) -> ProcessorPtr
|
||
|
{
|
||
|
return std::make_shared<FinishSortingTransform>(
|
||
|
header, prefix_description, result_description, max_block_size, limit);
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|