ClickHouse/src/AggregateFunctions/AggregateFunctionArray.cpp

62 lines
1.8 KiB
C++
Raw Normal View History

#include <AggregateFunctions/AggregateFunctionArray.h>
#include <AggregateFunctions/AggregateFunctionCombinatorFactory.h>
2018-09-10 17:09:07 +00:00
#include <Common/typeid_cast.h>
2021-06-07 00:15:11 +00:00
2015-09-24 12:40:36 +00:00
namespace DB
{
struct Settings;
2015-09-24 12:40:36 +00:00
namespace ErrorCodes
2015-09-24 12:40:36 +00:00
{
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
2015-09-24 12:40:36 +00:00
}
2020-09-07 18:00:37 +00:00
namespace
{
class AggregateFunctionCombinatorArray final : public IAggregateFunctionCombinator
{
public:
String getName() const override { return "Array"; }
bool supportsNesting() const override { return true; }
DataTypes transformArguments(const DataTypes & arguments) const override
{
2020-03-09 03:38:43 +00:00
if (arguments.empty())
throw Exception("-Array aggregate functions require at least one argument", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
DataTypes nested_arguments;
for (const auto & type : arguments)
{
if (const DataTypeArray * array = typeid_cast<const DataTypeArray *>(type.get()))
nested_arguments.push_back(array->getNestedType());
else
throw Exception("Illegal type " + type->getName() + " of argument"
" for aggregate function with " + getName() + " suffix. Must be array.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
}
return nested_arguments;
}
AggregateFunctionPtr transformAggregateFunction(
2020-06-14 07:44:02 +00:00
const AggregateFunctionPtr & nested_function,
const AggregateFunctionProperties &,
const DataTypes & arguments,
2021-07-26 14:37:47 +00:00
const Array & params) const override
{
2021-07-26 14:37:47 +00:00
return std::make_shared<AggregateFunctionArray>(nested_function, arguments, params);
}
};
2020-09-07 18:00:37 +00:00
}
void registerAggregateFunctionCombinatorArray(AggregateFunctionCombinatorFactory & factory)
{
factory.registerCombinator(std::make_shared<AggregateFunctionCombinatorArray>());
}
2015-09-24 12:40:36 +00:00
}