mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 02:21:59 +00:00
89 lines
2.3 KiB
C++
89 lines
2.3 KiB
C++
#include <Processors/QueryPlan/LimitStep.h>
|
|
#include <QueryPipeline/QueryPipelineBuilder.h>
|
|
#include <Processors/LimitTransform.h>
|
|
#include <IO/Operators.h>
|
|
#include <Common/JSONBuilder.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
static ITransformingStep::Traits getTraits()
|
|
{
|
|
return ITransformingStep::Traits
|
|
{
|
|
{
|
|
.preserves_distinct_columns = true,
|
|
.returns_single_stream = false,
|
|
.preserves_number_of_streams = true,
|
|
.preserves_sorting = true,
|
|
},
|
|
{
|
|
.preserves_number_of_rows = false,
|
|
}
|
|
};
|
|
}
|
|
|
|
LimitStep::LimitStep(
|
|
const DataStream & input_stream_,
|
|
size_t limit_, size_t offset_,
|
|
bool always_read_till_end_,
|
|
bool with_ties_,
|
|
SortDescription description_)
|
|
: ITransformingStep(input_stream_, input_stream_.header, getTraits())
|
|
, limit(limit_), offset(offset_)
|
|
, always_read_till_end(always_read_till_end_)
|
|
, with_ties(with_ties_), description(std::move(description_))
|
|
{
|
|
}
|
|
|
|
void LimitStep::updateInputStream(DataStream input_stream)
|
|
{
|
|
input_streams.clear();
|
|
input_streams.emplace_back(std::move(input_stream));
|
|
output_stream = createOutputStream(input_streams.front(), input_streams.front().header, getDataStreamTraits());
|
|
}
|
|
|
|
void LimitStep::transformPipeline(QueryPipelineBuilder & pipeline, const BuildQueryPipelineSettings &)
|
|
{
|
|
auto transform = std::make_shared<LimitTransform>(
|
|
pipeline.getHeader(), limit, offset, pipeline.getNumStreams(), always_read_till_end, with_ties, description);
|
|
|
|
pipeline.addTransform(std::move(transform));
|
|
}
|
|
|
|
void LimitStep::describeActions(FormatSettings & settings) const
|
|
{
|
|
String prefix(settings.offset, ' ');
|
|
settings.out << prefix << "Limit " << limit << '\n';
|
|
settings.out << prefix << "Offset " << offset << '\n';
|
|
|
|
if (with_ties || always_read_till_end)
|
|
{
|
|
settings.out << prefix;
|
|
|
|
String str;
|
|
if (with_ties)
|
|
settings.out << "WITH TIES";
|
|
|
|
if (always_read_till_end)
|
|
{
|
|
if (!with_ties)
|
|
settings.out << ", ";
|
|
|
|
settings.out << "Reads all data";
|
|
}
|
|
|
|
settings.out << '\n';
|
|
}
|
|
}
|
|
|
|
void LimitStep::describeActions(JSONBuilder::JSONMap & map) const
|
|
{
|
|
map.add("Limit", limit);
|
|
map.add("Offset", offset);
|
|
map.add("With Ties", with_ties);
|
|
map.add("Reads All Data", always_read_till_end);
|
|
}
|
|
|
|
}
|