2019-03-08 16:49:10 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-03-29 20:04:04 +00:00
|
|
|
#include <DataTypes/DataTypeCustom.h>
|
2019-03-08 16:49:10 +00:00
|
|
|
#include <AggregateFunctions/IAggregateFunction.h>
|
|
|
|
#include <Common/FieldVisitors.h>
|
|
|
|
|
|
|
|
#include <IO/ReadHelpers.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
/** The type SimpleAggregateFunction(fct, type) is meant to be used in an AggregatingMergeTree. It behaves like a standard
|
|
|
|
* data type but when rows are merged, an aggregation function is applied.
|
|
|
|
*
|
|
|
|
* The aggregation function is limited to simple functions whose merge state is the final result:
|
|
|
|
* any, anyLast, min, max, sum
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
*
|
|
|
|
* SimpleAggregateFunction(sum, Nullable(Float64))
|
|
|
|
* SimpleAggregateFunction(anyLast, LowCardinality(Nullable(String)))
|
|
|
|
* SimpleAggregateFunction(anyLast, IPv4)
|
|
|
|
*
|
2019-03-29 20:04:04 +00:00
|
|
|
* Technically, a standard IDataType is instanciated and customized with IDataTypeCustomName and DataTypeCustomDesc.
|
2019-03-08 16:49:10 +00:00
|
|
|
*/
|
|
|
|
|
2019-03-29 20:04:04 +00:00
|
|
|
class DataTypeCustomSimpleAggregateFunction : public IDataTypeCustomName
|
2019-03-11 08:24:52 +00:00
|
|
|
{
|
2019-03-08 16:49:10 +00:00
|
|
|
private:
|
|
|
|
const AggregateFunctionPtr function;
|
|
|
|
const DataTypes argument_types;
|
|
|
|
const Array parameters;
|
|
|
|
|
|
|
|
public:
|
2019-03-29 20:04:04 +00:00
|
|
|
DataTypeCustomSimpleAggregateFunction(const AggregateFunctionPtr & function_, const DataTypes & argument_types_, const Array & parameters_)
|
2019-03-11 10:46:14 +00:00
|
|
|
: function(function_), argument_types(argument_types_), parameters(parameters_) {}
|
2019-03-08 16:49:10 +00:00
|
|
|
|
|
|
|
const AggregateFunctionPtr getFunction() const { return function; }
|
2019-03-29 20:04:04 +00:00
|
|
|
String getName() const override;
|
2019-03-08 16:49:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|