mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
55 lines
1.7 KiB
C++
55 lines
1.7 KiB
C++
#pragma once
|
|
|
|
#include <DB/Interpreters/Aggregator.h>
|
|
#include <DB/Interpreters/Expression.h>
|
|
#include <DB/DataStreams/IProfilingBlockInputStream.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using Poco::SharedPtr;
|
|
|
|
|
|
/** Доагрегирует поток блоков, в котором каждый блок уже агрегирован.
|
|
* Агрегатные функции в блоках не должны быть финализированы, чтобы их состояния можно было объединить.
|
|
* Сам тоже не финализирует агрегатные функции.
|
|
*/
|
|
class MergingAggregatedBlockInputStream : public IProfilingBlockInputStream
|
|
{
|
|
public:
|
|
MergingAggregatedBlockInputStream(BlockInputStreamPtr input_, const ColumnNumbers & keys_, AggregateDescriptions & aggregates_)
|
|
: aggregator(new Aggregator(keys_, aggregates_)), has_been_read(false)
|
|
{
|
|
children.push_back(input_);
|
|
input = &*children.back();
|
|
}
|
|
|
|
/** keys берутся из GROUP BY части запроса
|
|
* Агрегатные функции ищутся везде в выражении.
|
|
*/
|
|
MergingAggregatedBlockInputStream(BlockInputStreamPtr input_, ExpressionPtr expression);
|
|
|
|
String getName() const { return "MergingAggregatedBlockInputStream"; }
|
|
|
|
String getID() const
|
|
{
|
|
std::stringstream res;
|
|
res << "MergingAggregated(" << input->getID() << ", " << aggregator->getID() << ")";
|
|
return res.str();
|
|
}
|
|
|
|
protected:
|
|
Block readImpl();
|
|
|
|
private:
|
|
MergingAggregatedBlockInputStream(const MergingAggregatedBlockInputStream & src)
|
|
: input(src.input), aggregator(src.aggregator), has_been_read(src.has_been_read) {}
|
|
|
|
IBlockInputStream * input;
|
|
SharedPtr<Aggregator> aggregator;
|
|
bool has_been_read;
|
|
};
|
|
|
|
}
|