2018-03-14 04:36:41 +00:00
|
|
|
#include <AggregateFunctions/AggregateFunctionFactory.h>
|
|
|
|
#include <AggregateFunctions/AggregateFunctionMaxIntersections.h>
|
|
|
|
#include <AggregateFunctions/FactoryHelpers.h>
|
|
|
|
#include <AggregateFunctions/Helpers.h>
|
2019-12-15 06:34:43 +00:00
|
|
|
#include "registerAggregateFunctions.h"
|
2018-03-14 04:36:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2020-02-25 18:10:48 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
|
|
|
|
}
|
2018-03-14 04:36:41 +00:00
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
AggregateFunctionPtr createAggregateFunctionMaxIntersections(
|
|
|
|
AggregateFunctionIntersectionsKind kind,
|
|
|
|
const std::string & name, const DataTypes & argument_types, const Array & parameters)
|
|
|
|
{
|
|
|
|
assertBinary(name, argument_types);
|
|
|
|
assertNoParameters(name, parameters);
|
|
|
|
|
2018-03-22 15:37:24 +00:00
|
|
|
AggregateFunctionPtr res(createWithNumericType<AggregateFunctionIntersectionsMax>(*argument_types[0], kind, argument_types));
|
|
|
|
if (!res)
|
|
|
|
throw Exception("Illegal types " + argument_types[0]->getName() + " and " + argument_types[1]->getName()
|
|
|
|
+ " of argument for aggregate function " + name, ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
|
|
|
|
|
|
|
return res;
|
2018-03-14 04:36:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void registerAggregateFunctionsMaxIntersections(AggregateFunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction("maxIntersections", [](const std::string & name, const DataTypes & argument_types, const Array & parameters)
|
|
|
|
{ return createAggregateFunctionMaxIntersections(AggregateFunctionIntersectionsKind::Count, name, argument_types, parameters); });
|
|
|
|
|
|
|
|
factory.registerFunction("maxIntersectionsPosition", [](const std::string & name, const DataTypes & argument_types, const Array & parameters)
|
|
|
|
{ return createAggregateFunctionMaxIntersections(AggregateFunctionIntersectionsKind::Position, name, argument_types, parameters); });
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|