#include #include #include #include #include #include namespace DB { namespace ErrorCodes { extern const int ILLEGAL_TYPE_OF_ARGUMENT; } /* arrayWithConstant(num, const) - make array of constants with length num. * arrayWithConstant(3, 'hello') = ['hello', 'hello', 'hello'] * arrayWithConstant(1, 'hello') = ['hello'] * arrayWithConstant(0, 'hello') = [] */ class FunctionArrayWithConstant : public IFunction { public: static constexpr auto name = "arrayWithConstant"; static FunctionPtr create(const Context &) { return std::make_shared(); } String getName() const override { return name; } size_t getNumberOfArguments() const override { return 2; } DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override { if (!isNumber(arguments[0])) throw Exception("Illegal type " + arguments[0]->getName() + " of argument of function " + getName() + ", expected Integer", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT); return std::make_shared(arguments[1]); } bool useDefaultImplementationForConstants() const override { return true; } bool useDefaultImplementationForNulls() const override { return false; } void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t num_rows) override { const auto * col_num = block.getByPosition(arguments[0]).column.get(); const auto * col_value = block.getByPosition(arguments[1]).column.get(); auto offsets_col = ColumnArray::ColumnOffsets::create(); ColumnArray::Offsets & offsets = offsets_col->getData(); offsets.reserve(num_rows); ColumnArray::Offset offset = 0; for (size_t i = 0; i < num_rows; ++i) { offset += col_num->getUInt(i); offsets.push_back(offset); } block.getByPosition(result).column = ColumnArray::create(col_value->replicate(offsets), std::move(offsets_col)); } }; void registerFunctionArrayWithConstant(FunctionFactory & factory) { factory.registerFunction(); } }