#include #include #include #include namespace DB { namespace { AggregateFunctionPtr createAggregateFunctionGroupArrayInsertAt(const std::string & name, const DataTypes & argument_types, const Array & parameters) { assertBinary(name, argument_types); return std::make_shared(argument_types, parameters); } } void registerAggregateFunctionGroupArrayInsertAt(AggregateFunctionFactory & factory) { factory.registerFunction("groupArrayInsertAt", createAggregateFunctionGroupArrayInsertAt); } }