#include #include #include #include #include #include #include namespace DB { namespace ErrorCodes { extern const int ILLEGAL_TYPE_OF_ARGUMENT; extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH; extern const int ARGUMENT_OUT_OF_BOUND; } namespace { static constexpr UInt8 uniq_upto_max_threshold = 100; AggregateFunctionPtr createAggregateFunctionUniqUpTo(const std::string & name, const DataTypes & argument_types, const Array & params) { UInt8 threshold = 5; /// default value if (!params.empty()) { if (params.size() != 1) throw Exception("Aggregate function " + name + " requires one parameter or less.", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH); UInt64 threshold_param = applyVisitor(FieldVisitorConvertToNumber(), params[0]); if (threshold_param > uniq_upto_max_threshold) throw Exception("Too large parameter for aggregate function " + name + ". Maximum: " + toString(uniq_upto_max_threshold), ErrorCodes::ARGUMENT_OUT_OF_BOUND); threshold = threshold_param; } if (argument_types.size() == 1) { const IDataType & argument_type = *argument_types[0]; AggregateFunctionPtr res(createWithNumericType(*argument_types[0], threshold)); if (res) return res; else if (typeid_cast(&argument_type)) return std::make_shared>(threshold); else if (typeid_cast(&argument_type)) return std::make_shared>(threshold); else if (typeid_cast(&argument_type) || typeid_cast(&argument_type)) return std::make_shared>(threshold); else if (typeid_cast(&argument_type)) return std::make_shared>(argument_types, threshold); else if (typeid_cast(&argument_type)) return std::make_shared>(threshold); else throw Exception("Illegal type " + argument_types[0]->getName() + " of argument for aggregate function " + name, ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT); } else if (argument_types.size() > 1) { /// If there are several arguments, then no tuples allowed among them. for (const auto & type : argument_types) if (typeid_cast(type.get())) throw Exception("Tuple argument of function " + name + " must be the only argument", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT); return std::make_shared>(argument_types, threshold); } else throw Exception("Incorrect number of arguments for aggregate function " + name, ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH); } } void registerAggregateFunctionUniqUpTo(AggregateFunctionFactory & factory) { factory.registerFunction("uniqUpTo", createAggregateFunctionUniqUpTo); } }