2012-05-08 11:19:00 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <DB/Interpreters/Aggregator.h>
|
|
|
|
|
#include <DB/DataStreams/IProfilingBlockInputStream.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
using Poco::SharedPtr;
|
|
|
|
|
|
|
|
|
|
|
2012-05-30 01:38:02 +00:00
|
|
|
|
/** Доагрегирует поток блоков, в котором каждый блок уже агрегирован.
|
|
|
|
|
* Агрегатные функции в блоках не должны быть финализированы, чтобы их состояния можно было объединить.
|
|
|
|
|
* Сам тоже не финализирует агрегатные функции.
|
2012-05-08 11:19:00 +00:00
|
|
|
|
*/
|
2012-05-30 01:38:02 +00:00
|
|
|
|
class MergingAggregatedBlockInputStream : public IProfilingBlockInputStream
|
2012-05-08 11:19:00 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
2013-09-01 04:55:41 +00:00
|
|
|
|
MergingAggregatedBlockInputStream(BlockInputStreamPtr input_, const ColumnNumbers & keys_, const AggregateDescriptions & aggregates_,
|
|
|
|
|
bool with_totals_, bool separate_totals_)
|
|
|
|
|
: aggregator(new Aggregator(keys_, aggregates_, with_totals_)), separate_totals(separate_totals_), has_been_read(false)
|
2012-05-08 11:19:00 +00:00
|
|
|
|
{
|
2013-05-04 04:05:15 +00:00
|
|
|
|
children.push_back(input_);
|
2012-05-08 11:19:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-01 04:55:41 +00:00
|
|
|
|
MergingAggregatedBlockInputStream(BlockInputStreamPtr input_, const Names & keys_names_, const AggregateDescriptions & aggregates_,
|
|
|
|
|
bool with_totals_, bool separate_totals_)
|
|
|
|
|
: aggregator(new Aggregator(keys_names_, aggregates_, with_totals_)), separate_totals(separate_totals_), has_been_read(false)
|
2013-05-27 14:02:55 +00:00
|
|
|
|
{
|
|
|
|
|
children.push_back(input_);
|
|
|
|
|
}
|
2012-05-08 11:19:00 +00:00
|
|
|
|
|
2012-05-30 01:38:02 +00:00
|
|
|
|
String getName() const { return "MergingAggregatedBlockInputStream"; }
|
2012-05-08 11:19:00 +00:00
|
|
|
|
|
2013-05-03 10:20:53 +00:00
|
|
|
|
String getID() const
|
|
|
|
|
{
|
|
|
|
|
std::stringstream res;
|
2013-05-04 05:20:07 +00:00
|
|
|
|
res << "MergingAggregated(" << children.back()->getID() << ", " << aggregator->getID() << ")";
|
2013-05-03 10:20:53 +00:00
|
|
|
|
return res.str();
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-20 02:10:47 +00:00
|
|
|
|
protected:
|
|
|
|
|
Block readImpl();
|
|
|
|
|
|
2012-05-08 11:19:00 +00:00
|
|
|
|
private:
|
|
|
|
|
SharedPtr<Aggregator> aggregator;
|
2013-09-01 04:55:41 +00:00
|
|
|
|
bool separate_totals;
|
2012-05-08 11:19:00 +00:00
|
|
|
|
bool has_been_read;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|