mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
145 lines
5.0 KiB
C++
145 lines
5.0 KiB
C++
#include <DataTypes/DataTypesNumber.h>
|
|
#include <DataTypes/DataTypesDecimal.h>
|
|
#include <Columns/ColumnsNumber.h>
|
|
#include <Columns/ColumnDecimal.h>
|
|
#include "FunctionArrayMapped.h"
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
|
|
extern const int ILLEGAL_COLUMN;
|
|
}
|
|
|
|
struct ArraySumImpl
|
|
{
|
|
static bool needBoolean() { return false; }
|
|
static bool needExpression() { return false; }
|
|
static bool needOneArray() { return false; }
|
|
|
|
static DataTypePtr getReturnType(const DataTypePtr & expression_return, const DataTypePtr & /*array_element*/)
|
|
{
|
|
WhichDataType which(expression_return);
|
|
|
|
if (which.isNativeUInt())
|
|
return std::make_shared<DataTypeUInt64>();
|
|
|
|
if (which.isNativeInt())
|
|
return std::make_shared<DataTypeInt64>();
|
|
|
|
if (which.isFloat())
|
|
return std::make_shared<DataTypeFloat64>();
|
|
|
|
if (which.isDecimal())
|
|
{
|
|
UInt32 scale = getDecimalScale(*expression_return);
|
|
return std::make_shared<DataTypeDecimal<Decimal128>>(DecimalUtils::maxPrecision<Decimal128>(), scale);
|
|
}
|
|
|
|
throw Exception("arraySum cannot add values of type " + expression_return->getName(), ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
|
}
|
|
|
|
template <typename Element, typename Result>
|
|
static bool executeType(const ColumnPtr & mapped, const ColumnArray::Offsets & offsets, ColumnPtr & res_ptr)
|
|
{
|
|
using ColVecType = std::conditional_t<IsDecimalNumber<Element>, ColumnDecimal<Element>, ColumnVector<Element>>;
|
|
using ColVecResult = std::conditional_t<IsDecimalNumber<Result>, ColumnDecimal<Result>, ColumnVector<Result>>;
|
|
|
|
const ColVecType * column = checkAndGetColumn<ColVecType>(&*mapped);
|
|
|
|
if (!column)
|
|
{
|
|
const ColumnConst * column_const = checkAndGetColumnConst<ColVecType>(&*mapped);
|
|
|
|
if (!column_const)
|
|
return false;
|
|
|
|
const Element x = column_const->template getValue<Element>();
|
|
|
|
typename ColVecResult::MutablePtr res_column;
|
|
if constexpr (IsDecimalNumber<Element>)
|
|
{
|
|
const typename ColVecType::Container & data =
|
|
checkAndGetColumn<ColVecType>(&column_const->getDataColumn())->getData();
|
|
res_column = ColVecResult::create(offsets.size(), data.getScale());
|
|
}
|
|
else
|
|
res_column = ColVecResult::create(offsets.size());
|
|
|
|
typename ColVecResult::Container & res = res_column->getData();
|
|
|
|
size_t pos = 0;
|
|
for (size_t i = 0; i < offsets.size(); ++i)
|
|
{
|
|
res[i] = x * (offsets[i] - pos);
|
|
pos = offsets[i];
|
|
}
|
|
|
|
res_ptr = std::move(res_column);
|
|
return true;
|
|
}
|
|
|
|
const typename ColVecType::Container & data = column->getData();
|
|
|
|
typename ColVecResult::MutablePtr res_column;
|
|
if constexpr (IsDecimalNumber<Element>)
|
|
res_column = ColVecResult::create(offsets.size(), data.getScale());
|
|
else
|
|
res_column = ColVecResult::create(offsets.size());
|
|
|
|
typename ColVecResult::Container & res = res_column->getData();
|
|
|
|
size_t pos = 0;
|
|
for (size_t i = 0; i < offsets.size(); ++i)
|
|
{
|
|
Result s = 0;
|
|
for (; pos < offsets[i]; ++pos)
|
|
{
|
|
s += data[pos];
|
|
}
|
|
res[i] = s;
|
|
}
|
|
|
|
res_ptr = std::move(res_column);
|
|
return true;
|
|
}
|
|
|
|
static ColumnPtr execute(const ColumnArray & array, ColumnPtr mapped)
|
|
{
|
|
const IColumn::Offsets & offsets = array.getOffsets();
|
|
ColumnPtr res;
|
|
|
|
if (executeType< UInt8 , UInt64>(mapped, offsets, res) ||
|
|
executeType< UInt16, UInt64>(mapped, offsets, res) ||
|
|
executeType< UInt32, UInt64>(mapped, offsets, res) ||
|
|
executeType< UInt64, UInt64>(mapped, offsets, res) ||
|
|
executeType< Int8 , Int64>(mapped, offsets, res) ||
|
|
executeType< Int16, Int64>(mapped, offsets, res) ||
|
|
executeType< Int32, Int64>(mapped, offsets, res) ||
|
|
executeType< Int64, Int64>(mapped, offsets, res) ||
|
|
executeType<Float32,Float64>(mapped, offsets, res) ||
|
|
executeType<Float64,Float64>(mapped, offsets, res) ||
|
|
executeType<Decimal32, Decimal128>(mapped, offsets, res) ||
|
|
executeType<Decimal64, Decimal128>(mapped, offsets, res) ||
|
|
executeType<Decimal128, Decimal128>(mapped, offsets, res))
|
|
return res;
|
|
else
|
|
throw Exception("Unexpected column for arraySum: " + mapped->getName(), ErrorCodes::ILLEGAL_COLUMN);
|
|
}
|
|
};
|
|
|
|
struct NameArraySum { static constexpr auto name = "arraySum"; };
|
|
using FunctionArraySum = FunctionArrayMapped<ArraySumImpl, NameArraySum>;
|
|
|
|
void registerFunctionArraySum(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionArraySum>();
|
|
}
|
|
|
|
}
|
|
|