mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 10:04:06 +00:00
106 lines
2.5 KiB
C++
106 lines
2.5 KiB
C++
#pragma once
|
||
|
||
#include <DB/DataTypes/DataTypeAggregateFunction.h>
|
||
#include <DB/AggregateFunctions/IAggregateFunction.h>
|
||
#include <DB/Columns/ColumnAggregateFunction.h>
|
||
|
||
|
||
namespace DB
|
||
{
|
||
|
||
|
||
/** Не агрегатная функция, а адаптер агрегатных функций,
|
||
* Агрегатные функции с суффиксом State отличаются от соответствующих тем, что их состояния не финализируются.
|
||
* Возвращаемый тип - DataTypeAggregateFunction.
|
||
*/
|
||
|
||
class AggregateFunctionState final : public IAggregateFunction
|
||
{
|
||
private:
|
||
AggregateFunctionPtr nested_func_owner;
|
||
IAggregateFunction * nested_func;
|
||
DataTypes arguments;
|
||
Array params;
|
||
|
||
public:
|
||
AggregateFunctionState(AggregateFunctionPtr nested_) : nested_func_owner(nested_), nested_func(nested_func_owner.get()) {}
|
||
|
||
String getName() const
|
||
{
|
||
return nested_func->getName() + "State";
|
||
}
|
||
|
||
DataTypePtr getReturnType() const
|
||
{
|
||
return new DataTypeAggregateFunction(nested_func_owner, arguments, params);
|
||
}
|
||
|
||
void setArguments(const DataTypes & arguments_)
|
||
{
|
||
arguments = arguments_;
|
||
nested_func->setArguments(arguments);
|
||
}
|
||
|
||
void setParameters(const Array & params_)
|
||
{
|
||
params = params_;
|
||
nested_func->setParameters(params);
|
||
}
|
||
|
||
void create(AggregateDataPtr place) const
|
||
{
|
||
nested_func->create(place);
|
||
}
|
||
|
||
void destroy(AggregateDataPtr place) const noexcept
|
||
{
|
||
nested_func->destroy(place);
|
||
}
|
||
|
||
bool hasTrivialDestructor() const
|
||
{
|
||
return nested_func->hasTrivialDestructor();
|
||
}
|
||
|
||
size_t sizeOfData() const
|
||
{
|
||
return nested_func->sizeOfData();
|
||
}
|
||
|
||
size_t alignOfData() const
|
||
{
|
||
return nested_func->alignOfData();
|
||
}
|
||
|
||
void add(AggregateDataPtr place, const IColumn ** columns, size_t row_num) const
|
||
{
|
||
nested_func->add(place, columns, row_num);
|
||
}
|
||
|
||
void merge(AggregateDataPtr place, ConstAggregateDataPtr rhs) const
|
||
{
|
||
nested_func->merge(place, rhs);
|
||
}
|
||
|
||
void serialize(ConstAggregateDataPtr place, WriteBuffer & buf) const
|
||
{
|
||
nested_func->serialize(place, buf);
|
||
}
|
||
|
||
void deserializeMerge(AggregateDataPtr place, ReadBuffer & buf) const
|
||
{
|
||
nested_func->deserializeMerge(place, buf);
|
||
}
|
||
|
||
void insertResultInto(ConstAggregateDataPtr place, IColumn & to) const
|
||
{
|
||
static_cast<ColumnAggregateFunction &>(to).getData().push_back(const_cast<AggregateDataPtr>(place));
|
||
}
|
||
|
||
/// Аггрегатная функция или состояние аггрегатной функции.
|
||
bool isState() const { return true; }
|
||
|
||
};
|
||
|
||
}
|