ClickHouse/src/AggregateFunctions/AggregateFunctionAvg.cpp

53 lines
1.5 KiB
C++
Raw Normal View History

#include <AggregateFunctions/AggregateFunctionFactory.h>
#include <AggregateFunctions/AggregateFunctionAvg.h>
#include <AggregateFunctions/Helpers.h>
#include <AggregateFunctions/FactoryHelpers.h>
2019-12-15 06:34:43 +00:00
#include "registerAggregateFunctions.h"
2015-09-24 12:40:36 +00:00
namespace DB
{
2020-02-25 18:10:48 +00:00
namespace ErrorCodes
{
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
}
2015-09-24 12:40:36 +00:00
namespace
{
2018-09-12 13:27:32 +00:00
template <typename T>
struct Avg
{
2018-11-20 20:09:20 +00:00
using FieldType = std::conditional_t<IsDecimalNumber<T>, Decimal128, NearestFieldType<T>>;
2019-12-17 14:00:40 +00:00
using Function = AggregateFunctionAvg<T, AggregateFunctionAvgData<FieldType, UInt64>>;
2018-09-12 13:27:32 +00:00
};
template <typename T>
using AggregateFuncAvg = typename Avg<T>::Function;
AggregateFunctionPtr createAggregateFunctionAvg(const std::string & name, const DataTypes & argument_types, const Array & parameters)
2015-09-24 12:40:36 +00:00
{
assertNoParameters(name, parameters);
assertUnary(name, argument_types);
2015-09-24 12:40:36 +00:00
2018-09-12 13:27:32 +00:00
AggregateFunctionPtr res;
DataTypePtr data_type = argument_types[0];
if (isDecimal(data_type))
2019-02-12 09:31:20 +00:00
res.reset(createWithDecimalType<AggregateFuncAvg>(*data_type, *data_type, argument_types));
2018-09-12 13:27:32 +00:00
else
2019-02-12 09:31:20 +00:00
res.reset(createWithNumericType<AggregateFuncAvg>(*data_type, argument_types));
2015-09-24 12:40:36 +00:00
if (!res)
2018-09-12 13:27:32 +00:00
throw Exception("Illegal type " + argument_types[0]->getName() + " of argument for aggregate function " + name,
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
return res;
2015-09-24 12:40:36 +00:00
}
}
void registerAggregateFunctionAvg(AggregateFunctionFactory & factory)
{
factory.registerFunction("avg", createAggregateFunctionAvg, AggregateFunctionFactory::CaseInsensitive);
2015-09-24 12:40:36 +00:00
}
}