blob: 1ae6b73cc3dc73627358968743ce24fc98d3a582 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#pragma once
#include <Processors/QueryPlan/ITransformingStep.h>
#include <Core/SortDescription.h>
namespace DB
{
/// Executes LIMIT. See LimitTransform.
class LimitStep : public ITransformingStep
{
public:
LimitStep(
const DataStream & input_stream_,
size_t limit_, size_t offset_,
bool always_read_till_end_ = false, /// Read all data even if limit is reached. Needed for totals.
bool with_ties_ = false, /// Limit with ties.
SortDescription description_ = {});
String getName() const override { return "Limit"; }
void transformPipeline(QueryPipelineBuilder & pipeline, const BuildQueryPipelineSettings &) override;
void describeActions(JSONBuilder::JSONMap & map) const override;
void describeActions(FormatSettings & settings) const override;
size_t getLimitForSorting() const
{
if (limit > std::numeric_limits<UInt64>::max() - offset)
return 0;
return limit + offset;
}
bool withTies() const { return with_ties; }
private:
void updateOutputStream() override
{
output_stream = createOutputStream(input_streams.front(), input_streams.front().header, getDataStreamTraits());
}
size_t limit;
size_t offset;
bool always_read_till_end;
bool with_ties;
const SortDescription description;
};
}
|