mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 20:42:04 +00:00
70d1adfe4b
* save format string for NetException * format exceptions * format exceptions 2 * format exceptions 3 * format exceptions 4 * format exceptions 5 * format exceptions 6 * fix * format exceptions 7 * format exceptions 8 * Update MergeTreeIndexGin.cpp * Update AggregateFunctionMap.cpp * Update AggregateFunctionMap.cpp * fix
159 lines
5.8 KiB
C++
159 lines
5.8 KiB
C++
#include <Functions/IFunction.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionHelpers.h>
|
|
#include <Columns/ColumnString.h>
|
|
#include <Columns/ColumnAggregateFunction.h>
|
|
#include <AggregateFunctions/AggregateFunctionFactory.h>
|
|
#include <AggregateFunctions/AggregateFunctionState.h>
|
|
#include <AggregateFunctions/IAggregateFunction.h>
|
|
#include <AggregateFunctions/parseAggregateFunctionParameters.h>
|
|
#include <Common/Arena.h>
|
|
|
|
#include <Common/scope_guard_safe.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
|
|
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
|
|
extern const int BAD_ARGUMENTS;
|
|
}
|
|
|
|
namespace
|
|
{
|
|
|
|
class FunctionInitializeAggregation : public IFunction, private WithContext
|
|
{
|
|
public:
|
|
static constexpr auto name = "initializeAggregation";
|
|
static FunctionPtr create(ContextPtr context_) { return std::make_shared<FunctionInitializeAggregation>(context_); }
|
|
explicit FunctionInitializeAggregation(ContextPtr context_) : WithContext(context_) {}
|
|
|
|
String getName() const override { return name; }
|
|
|
|
bool isVariadic() const override { return true; }
|
|
size_t getNumberOfArguments() const override { return 0; }
|
|
|
|
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return true; }
|
|
|
|
bool useDefaultImplementationForConstants() const override { return true; }
|
|
bool useDefaultImplementationForNulls() const override { return false; }
|
|
ColumnNumbers getArgumentsThatAreAlwaysConstant() const override { return {0}; }
|
|
|
|
DataTypePtr getReturnTypeImpl(const ColumnsWithTypeAndName & arguments) const override;
|
|
|
|
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr & result_type, size_t input_rows_count) const override;
|
|
|
|
private:
|
|
/// TODO Rewrite with FunctionBuilder.
|
|
mutable AggregateFunctionPtr aggregate_function;
|
|
};
|
|
|
|
|
|
DataTypePtr FunctionInitializeAggregation::getReturnTypeImpl(const ColumnsWithTypeAndName & arguments) const
|
|
{
|
|
if (arguments.size() < 2)
|
|
throw Exception(ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH,
|
|
"Number of arguments for function {} doesn't match: passed {}, should be at least 2.",
|
|
getName(), arguments.size());
|
|
|
|
const ColumnConst * aggregate_function_name_column = checkAndGetColumnConst<ColumnString>(arguments[0].column.get());
|
|
if (!aggregate_function_name_column)
|
|
throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT, "First argument for function {} must be constant string: "
|
|
"name of aggregate function.", getName());
|
|
|
|
DataTypes argument_types(arguments.size() - 1);
|
|
for (size_t i = 1, size = arguments.size(); i < size; ++i)
|
|
{
|
|
argument_types[i - 1] = arguments[i].type;
|
|
}
|
|
|
|
if (!aggregate_function)
|
|
{
|
|
String aggregate_function_name_with_params = aggregate_function_name_column->getValue<String>();
|
|
|
|
if (aggregate_function_name_with_params.empty())
|
|
throw Exception(ErrorCodes::BAD_ARGUMENTS, "First argument for function {} (name of aggregate function) cannot be empty.", getName());
|
|
|
|
String aggregate_function_name;
|
|
Array params_row;
|
|
getAggregateFunctionNameAndParametersArray(aggregate_function_name_with_params,
|
|
aggregate_function_name, params_row, "function " + getName(), getContext());
|
|
|
|
AggregateFunctionProperties properties;
|
|
aggregate_function = AggregateFunctionFactory::instance().get(aggregate_function_name, argument_types, params_row, properties);
|
|
}
|
|
|
|
return aggregate_function->getResultType();
|
|
}
|
|
|
|
|
|
ColumnPtr FunctionInitializeAggregation::executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr & result_type, size_t input_rows_count) const
|
|
{
|
|
const IAggregateFunction & agg_func = *aggregate_function;
|
|
std::unique_ptr<Arena> arena = std::make_unique<Arena>();
|
|
|
|
const size_t num_arguments_columns = arguments.size() - 1;
|
|
|
|
std::vector<ColumnPtr> materialized_columns(num_arguments_columns);
|
|
std::vector<const IColumn *> aggregate_arguments_vec(num_arguments_columns);
|
|
|
|
for (size_t i = 0; i < num_arguments_columns; ++i)
|
|
{
|
|
const IColumn * col = arguments[i + 1].column.get();
|
|
materialized_columns.emplace_back(col->convertToFullColumnIfConst());
|
|
aggregate_arguments_vec[i] = &(*materialized_columns.back());
|
|
}
|
|
|
|
const IColumn ** aggregate_arguments = aggregate_arguments_vec.data();
|
|
|
|
MutableColumnPtr result_holder = result_type->createColumn();
|
|
IColumn & res_col = *result_holder;
|
|
|
|
PODArray<AggregateDataPtr> places(input_rows_count);
|
|
for (size_t i = 0; i < input_rows_count; ++i)
|
|
{
|
|
places[i] = arena->alignedAlloc(agg_func.sizeOfData(), agg_func.alignOfData());
|
|
try
|
|
{
|
|
agg_func.create(places[i]);
|
|
}
|
|
catch (...)
|
|
{
|
|
for (size_t j = 0; j < i; ++j)
|
|
agg_func.destroy(places[j]);
|
|
throw;
|
|
}
|
|
}
|
|
|
|
SCOPE_EXIT_MEMORY_SAFE({
|
|
for (size_t i = 0; i < input_rows_count; ++i)
|
|
agg_func.destroy(places[i]);
|
|
});
|
|
|
|
{
|
|
const auto * that = &agg_func;
|
|
/// Unnest consecutive trailing -State combinators
|
|
while (const auto * func = typeid_cast<const AggregateFunctionState *>(that))
|
|
that = func->getNestedFunction().get();
|
|
that->addBatch(0, input_rows_count, places.data(), 0, aggregate_arguments, arena.get());
|
|
}
|
|
|
|
for (size_t i = 0; i < input_rows_count; ++i)
|
|
/// We should use insertMergeResultInto to insert result into ColumnAggregateFunction
|
|
/// correctly if result contains AggregateFunction's states
|
|
agg_func.insertMergeResultInto(places[i], res_col, arena.get());
|
|
return result_holder;
|
|
}
|
|
|
|
}
|
|
|
|
REGISTER_FUNCTION(InitializeAggregation)
|
|
{
|
|
factory.registerFunction<FunctionInitializeAggregation>();
|
|
}
|
|
|
|
}
|