2016-06-07 08:23:15 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-12-20 08:19:54 +00:00
|
|
|
#include <AggregateFunctions/AggregateFunctionMinMaxAny.h>
|
2017-07-12 01:16:01 +00:00
|
|
|
#include <AggregateFunctions/AggregateFunctionArgMinMax.h>
|
2017-12-20 08:19:54 +00:00
|
|
|
#include <AggregateFunctions/FactoryHelpers.h>
|
2017-12-20 21:22:04 +00:00
|
|
|
#include <AggregateFunctions/Helpers.h>
|
2017-07-13 20:58:19 +00:00
|
|
|
#include <Common/typeid_cast.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <DataTypes/DataTypeDate.h>
|
|
|
|
#include <DataTypes/DataTypeDateTime.h>
|
|
|
|
#include <DataTypes/DataTypeString.h>
|
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
2016-06-07 08:23:15 +00:00
|
|
|
|
2017-12-20 08:19:54 +00:00
|
|
|
|
2016-06-07 08:23:15 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
/// min, max, any, anyLast
|
|
|
|
template <template <typename> class AggregateFunctionTemplate, template <typename> class Data>
|
2017-12-20 08:19:54 +00:00
|
|
|
static IAggregateFunction * createAggregateFunctionSingleValue(const String & name, const DataTypes & argument_types, const Array & parameters)
|
2016-06-07 08:23:15 +00:00
|
|
|
{
|
2017-12-20 08:19:54 +00:00
|
|
|
assertNoParameters(name, parameters);
|
|
|
|
assertUnary(name, argument_types);
|
2016-06-07 08:23:15 +00:00
|
|
|
|
2017-12-20 20:25:22 +00:00
|
|
|
const DataTypePtr & argument_type = argument_types[0];
|
2016-06-07 08:23:15 +00:00
|
|
|
|
2017-12-20 21:22:04 +00:00
|
|
|
#define DISPATCH(TYPE) \
|
|
|
|
if (typeid_cast<const DataType ## TYPE *>(argument_type.get())) return new AggregateFunctionTemplate<Data<SingleValueDataFixed<TYPE>>>(argument_type);
|
|
|
|
FOR_NUMERIC_TYPES(DISPATCH)
|
|
|
|
#undef DISPATCH
|
|
|
|
|
2017-12-20 20:25:22 +00:00
|
|
|
if (typeid_cast<const DataTypeDate *>(argument_type.get()))
|
|
|
|
return new AggregateFunctionTemplate<Data<SingleValueDataFixed<DataTypeDate::FieldType>>>(argument_type);
|
|
|
|
if (typeid_cast<const DataTypeDateTime *>(argument_type.get()))
|
|
|
|
return new AggregateFunctionTemplate<Data<SingleValueDataFixed<DataTypeDateTime::FieldType>>>(argument_type);
|
|
|
|
if (typeid_cast<const DataTypeString *>(argument_type.get()))
|
|
|
|
return new AggregateFunctionTemplate<Data<SingleValueDataString>>(argument_type);
|
2017-12-20 08:39:21 +00:00
|
|
|
|
2017-12-20 20:25:22 +00:00
|
|
|
return new AggregateFunctionTemplate<Data<SingleValueDataGeneric>>(argument_type);
|
2016-06-07 08:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// argMin, argMax
|
|
|
|
template <template <typename> class MinMaxData, typename ResData>
|
2017-12-20 20:25:22 +00:00
|
|
|
static IAggregateFunction * createAggregateFunctionArgMinMaxSecond(const DataTypePtr & res_type, const DataTypePtr & val_type)
|
2016-06-07 08:23:15 +00:00
|
|
|
{
|
2017-12-20 21:22:04 +00:00
|
|
|
#define DISPATCH(TYPE) \
|
|
|
|
if (typeid_cast<const DataType ## TYPE *>(val_type.get())) \
|
|
|
|
return new AggregateFunctionArgMinMax<AggregateFunctionArgMinMaxData<ResData, MinMaxData<SingleValueDataFixed<TYPE>>>>(res_type, val_type);
|
|
|
|
FOR_NUMERIC_TYPES(DISPATCH)
|
|
|
|
#undef DISPATCH
|
|
|
|
|
2017-12-20 20:25:22 +00:00
|
|
|
if (typeid_cast<const DataTypeDate *>(val_type.get()))
|
2017-12-20 08:39:21 +00:00
|
|
|
return new AggregateFunctionArgMinMax<AggregateFunctionArgMinMaxData<ResData, MinMaxData<SingleValueDataFixed<DataTypeDate::FieldType>>>>(res_type, val_type);
|
2017-12-20 20:25:22 +00:00
|
|
|
if (typeid_cast<const DataTypeDateTime*>(val_type.get()))
|
2017-12-20 08:39:21 +00:00
|
|
|
return new AggregateFunctionArgMinMax<AggregateFunctionArgMinMaxData<ResData, MinMaxData<SingleValueDataFixed<DataTypeDateTime::FieldType>>>>(res_type, val_type);
|
2017-12-20 20:25:22 +00:00
|
|
|
if (typeid_cast<const DataTypeString*>(val_type.get()))
|
2017-12-20 08:39:21 +00:00
|
|
|
return new AggregateFunctionArgMinMax<AggregateFunctionArgMinMaxData<ResData, MinMaxData<SingleValueDataString>>>(res_type, val_type);
|
2017-12-20 08:19:54 +00:00
|
|
|
|
2017-12-20 08:39:21 +00:00
|
|
|
return new AggregateFunctionArgMinMax<AggregateFunctionArgMinMaxData<ResData, MinMaxData<SingleValueDataGeneric>>>(res_type, val_type);
|
2016-06-07 08:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <template <typename> class MinMaxData>
|
2017-12-20 08:19:54 +00:00
|
|
|
static IAggregateFunction * createAggregateFunctionArgMinMax(const String & name, const DataTypes & argument_types, const Array & parameters)
|
2016-06-07 08:23:15 +00:00
|
|
|
{
|
2017-12-20 08:19:54 +00:00
|
|
|
assertNoParameters(name, parameters);
|
|
|
|
assertBinary(name, argument_types);
|
2016-06-07 08:23:15 +00:00
|
|
|
|
2017-12-20 20:25:22 +00:00
|
|
|
const DataTypePtr & res_type = argument_types[0];
|
|
|
|
const DataTypePtr & val_type = argument_types[1];
|
2016-06-07 08:23:15 +00:00
|
|
|
|
2017-12-20 21:22:04 +00:00
|
|
|
#define DISPATCH(TYPE) \
|
|
|
|
if (typeid_cast<const DataType ## TYPE *>(res_type.get())) \
|
|
|
|
return createAggregateFunctionArgMinMaxSecond<MinMaxData, SingleValueDataFixed<TYPE>>(res_type, val_type);
|
|
|
|
FOR_NUMERIC_TYPES(DISPATCH)
|
|
|
|
#undef DISPATCH
|
|
|
|
|
2017-12-20 20:25:22 +00:00
|
|
|
if (typeid_cast<const DataTypeDate *>(res_type.get()))
|
2017-12-20 08:39:21 +00:00
|
|
|
return createAggregateFunctionArgMinMaxSecond<MinMaxData, SingleValueDataFixed<DataTypeDate::FieldType>>(res_type, val_type);
|
2017-12-20 20:25:22 +00:00
|
|
|
if (typeid_cast<const DataTypeDateTime*>(res_type.get()))
|
2017-12-20 08:39:21 +00:00
|
|
|
return createAggregateFunctionArgMinMaxSecond<MinMaxData, SingleValueDataFixed<DataTypeDateTime::FieldType>>(res_type, val_type);
|
2017-12-20 20:25:22 +00:00
|
|
|
if (typeid_cast<const DataTypeString*>(res_type.get()))
|
2017-12-20 08:39:21 +00:00
|
|
|
return createAggregateFunctionArgMinMaxSecond<MinMaxData, SingleValueDataString>(res_type, val_type);
|
2017-12-20 08:19:54 +00:00
|
|
|
|
2017-12-20 08:39:21 +00:00
|
|
|
return createAggregateFunctionArgMinMaxSecond<MinMaxData, SingleValueDataGeneric>(res_type, val_type);
|
2016-06-07 08:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|