#include #include #include #include #include "FunctionArrayMapped.h" #include namespace DB { namespace ErrorCodes { extern const int ILLEGAL_TYPE_OF_ARGUMENT; extern const int ILLEGAL_COLUMN; } 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(std::make_shared()); if (which.isNativeInt()) return std::make_shared(std::make_shared()); if (which.isFloat()) return std::make_shared(std::make_shared()); if (which.isDecimal()) { UInt32 scale = getDecimalScale(*expression_return); DataTypePtr nested = std::make_shared>(DecimalUtils::maxPrecision(), scale); return std::make_shared(nested); } throw Exception("arrayCumSum cannot add values of type " + expression_return->getName(), ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT); } template static bool executeType(const ColumnPtr & mapped, const ColumnArray & array, ColumnPtr & res_ptr) { using ColVecType = std::conditional_t, ColumnDecimal, ColumnVector>; using ColVecResult = std::conditional_t, ColumnDecimal, ColumnVector>; const ColVecType * column = checkAndGetColumn(&*mapped); if (!column) { const ColumnConst * column_const = checkAndGetColumnConst(&*mapped); if (!column_const) return false; const Element x = column_const->template getValue(); const IColumn::Offsets & offsets = array.getOffsets(); typename ColVecResult::MutablePtr res_nested; if constexpr (IsDecimalNumber) { const typename ColVecType::Container & data = checkAndGetColumn(&column_const->getDataColumn())->getData(); res_nested = ColVecResult::create(0, data.getScale()); } else res_nested = ColVecResult::create(); typename ColVecResult::Container & res_values = res_nested->getData(); res_values.resize(column_const->size()); size_t pos = 0; for (auto offset : offsets) { // skip empty arrays if (pos < offset) { res_values[pos++] = x; for (; pos < offset; ++pos) res_values[pos] = res_values[pos - 1] + x; } } res_ptr = ColumnArray::create(std::move(res_nested), array.getOffsetsPtr()); return true; } const typename ColVecType::Container & data = column->getData(); const IColumn::Offsets & offsets = array.getOffsets(); typename ColVecResult::MutablePtr res_nested; if constexpr (IsDecimalNumber) res_nested = ColVecResult::create(0, data.getScale()); else res_nested = ColVecResult::create(); typename ColVecResult::Container & res_values = res_nested->getData(); res_values.resize(data.size()); size_t pos = 0; for (auto offset : offsets) { // skip empty arrays if (pos < offset) { res_values[pos] = data[pos]; for (++pos; pos < offset; ++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(mapped, array, res) || executeType(mapped, array, res) || executeType(mapped, array, res) || executeType(mapped, array, res) || executeType(mapped, array, res)) return res; else throw Exception("Unexpected column for arrayCumSum: " + mapped->getName(), ErrorCodes::ILLEGAL_COLUMN); } }; struct NameArrayCumSum { static constexpr auto name = "arrayCumSum"; }; using FunctionArrayCumSum = FunctionArrayMapped; void registerFunctionArrayCumSum(FunctionFactory & factory) { factory.registerFunction(); } }