blob: 0f9c15929695baaf859c2c9f242d6806513652ca (
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
|
#pragma once
#include <Interpreters/Aggregator.h>
#include <Processors/QueryPlan/ITransformingStep.h>
#include <QueryPipeline/SizeLimits.h>
namespace DB
{
struct AggregatingTransformParams;
using AggregatingTransformParamsPtr = std::shared_ptr<AggregatingTransformParams>;
/// WITH ROLLUP. See RollupTransform.
class RollupStep : public ITransformingStep
{
public:
RollupStep(const DataStream & input_stream_, Aggregator::Params params_, bool final_, bool use_nulls_);
String getName() const override { return "Rollup"; }
void transformPipeline(QueryPipelineBuilder & pipeline, const BuildQueryPipelineSettings &) override;
const Aggregator::Params & getParams() const { return params; }
private:
void updateOutputStream() override;
Aggregator::Params params;
size_t keys_size;
bool final;
bool use_nulls;
};
}
|