2018-09-13 01:59:51 +00:00
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
2019-11-11 20:46:36 +00:00
|
|
|
#include <DataTypes/DataTypesDecimal.h>
|
2018-09-13 01:59:51 +00:00
|
|
|
#include <Columns/ColumnsNumber.h>
|
2019-11-11 20:46:36 +00:00
|
|
|
#include <Columns/ColumnDecimal.h>
|
2019-06-21 15:31:37 +00:00
|
|
|
#include "FunctionArrayMapped.h"
|
2018-09-13 01:59:51 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2018-11-22 21:19:58 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int ILLEGAL_COLUMN;
|
|
|
|
}
|
|
|
|
|
2018-09-13 01:59:51 +00:00
|
|
|
struct ArrayCumSumImpl
|
|
|
|
{
|
|
|
|
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<DataTypeArray>(std::make_shared<DataTypeUInt64>());
|
|
|
|
|
|
|
|
if (which.isNativeInt())
|
|
|
|
return std::make_shared<DataTypeArray>(std::make_shared<DataTypeInt64>());
|
|
|
|
|
|
|
|
if (which.isFloat())
|
|
|
|
return std::make_shared<DataTypeArray>(std::make_shared<DataTypeFloat64>());
|
|
|
|
|
2019-11-11 20:46:36 +00:00
|
|
|
if (which.isDecimal())
|
|
|
|
{
|
|
|
|
UInt32 scale = getDecimalScale(*expression_return);
|
|
|
|
DataTypePtr nested = std::make_shared<DataTypeDecimal<Decimal128>>(maxDecimalPrecision<Decimal128>(), scale);
|
|
|
|
return std::make_shared<DataTypeArray>(nested);
|
|
|
|
}
|
|
|
|
|
2018-09-13 01:59:51 +00:00
|
|
|
throw Exception("arrayCumSum 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 & array, ColumnPtr & res_ptr)
|
|
|
|
{
|
2019-11-11 20:46:36 +00:00
|
|
|
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);
|
|
|
|
const typename ColVecType::Container & data = column->getData();
|
2018-09-13 01:59:51 +00:00
|
|
|
|
|
|
|
if (!column)
|
|
|
|
{
|
2019-11-11 20:46:36 +00:00
|
|
|
const ColumnConst * column_const = checkAndGetColumnConst<ColVecType>(&*mapped);
|
2018-09-13 01:59:51 +00:00
|
|
|
|
|
|
|
if (!column_const)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const Element x = column_const->template getValue<Element>();
|
|
|
|
const IColumn::Offsets & offsets = array.getOffsets();
|
|
|
|
|
2019-11-11 20:46:36 +00:00
|
|
|
typename ColVecResult::MutablePtr res_nested;
|
|
|
|
if constexpr (IsDecimalNumber<Element>)
|
|
|
|
res_nested = ColVecResult::create(0, data.getScale());
|
|
|
|
else
|
|
|
|
res_nested = ColVecResult::create();
|
|
|
|
|
|
|
|
typename ColVecResult::Container & res_values = res_nested->getData();
|
2018-09-13 01:59:51 +00:00
|
|
|
res_values.resize(column_const->size());
|
|
|
|
|
|
|
|
size_t pos = 0;
|
|
|
|
for (size_t i = 0; i < offsets.size(); ++i)
|
|
|
|
{
|
|
|
|
// skip empty arrays
|
|
|
|
if (pos < offsets[i])
|
|
|
|
{
|
|
|
|
res_values[pos++] = x;
|
|
|
|
for (; pos < offsets[i]; ++pos)
|
|
|
|
{
|
|
|
|
res_values[pos] = res_values[pos - 1] + x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res_ptr = ColumnArray::create(std::move(res_nested), array.getOffsetsPtr());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const IColumn::Offsets & offsets = array.getOffsets();
|
|
|
|
|
2019-11-11 20:46:36 +00:00
|
|
|
typename ColVecResult::MutablePtr res_nested;
|
|
|
|
if constexpr (IsDecimalNumber<Element>)
|
|
|
|
res_nested = ColVecResult::create(0, data.getScale());
|
|
|
|
else
|
|
|
|
res_nested = ColVecResult::create();
|
|
|
|
|
|
|
|
typename ColVecResult::Container & res_values = res_nested->getData();
|
2018-09-13 01:59:51 +00:00
|
|
|
res_values.resize(data.size());
|
|
|
|
|
|
|
|
size_t pos = 0;
|
|
|
|
for (size_t i = 0; i < offsets.size(); ++i)
|
|
|
|
{
|
|
|
|
// skip empty arrays
|
|
|
|
if (pos < offsets[i])
|
|
|
|
{
|
|
|
|
res_values[pos] = data[pos];
|
|
|
|
for (++pos; pos < offsets[i]; ++pos)
|
|
|
|
{
|
|
|
|
res_values[pos] = res_values[pos - 1] + data[pos];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
res_ptr = ColumnArray::create(std::move(res_nested), array.getOffsetsPtr());
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static ColumnPtr execute(const ColumnArray & array, ColumnPtr mapped)
|
|
|
|
{
|
|
|
|
ColumnPtr res;
|
|
|
|
|
|
|
|
if (executeType< UInt8 , UInt64>(mapped, array, res) ||
|
|
|
|
executeType< UInt16, UInt64>(mapped, array, res) ||
|
|
|
|
executeType< UInt32, UInt64>(mapped, array, res) ||
|
|
|
|
executeType< UInt64, UInt64>(mapped, array, res) ||
|
|
|
|
executeType< Int8 , Int64>(mapped, array, res) ||
|
|
|
|
executeType< Int16, Int64>(mapped, array, res) ||
|
|
|
|
executeType< Int32, Int64>(mapped, array, res) ||
|
|
|
|
executeType< Int64, Int64>(mapped, array, res) ||
|
|
|
|
executeType<Float32,Float64>(mapped, array, res) ||
|
2019-11-11 20:46:36 +00:00
|
|
|
executeType<Float64,Float64>(mapped, array, res) ||
|
|
|
|
executeType<Decimal32, Decimal128>(mapped, array, res) ||
|
|
|
|
executeType<Decimal64, Decimal128>(mapped, array, res) ||
|
|
|
|
executeType<Decimal128, Decimal128>(mapped, array, res))
|
2018-09-13 01:59:51 +00:00
|
|
|
return res;
|
|
|
|
else
|
2018-11-22 21:19:58 +00:00
|
|
|
throw Exception("Unexpected column for arrayCumSum: " + mapped->getName(), ErrorCodes::ILLEGAL_COLUMN);
|
2018-09-13 01:59:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NameArrayCumSum { static constexpr auto name = "arrayCumSum"; };
|
|
|
|
using FunctionArrayCumSum = FunctionArrayMapped<ArrayCumSumImpl, NameArrayCumSum>;
|
|
|
|
|
|
|
|
void registerFunctionArrayCumSum(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionArrayCumSum>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|