diff options
| author | vitalyisaev <[email protected]> | 2023-11-14 09:58:56 +0300 |
|---|---|---|
| committer | vitalyisaev <[email protected]> | 2023-11-14 10:20:20 +0300 |
| commit | c2b2dfd9827a400a8495e172a56343462e3ceb82 (patch) | |
| tree | cd4e4f597d01bede4c82dffeb2d780d0a9046bd0 /contrib/clickhouse/src/Functions/randomFixedString.cpp | |
| parent | d4ae8f119e67808cb0cf776ba6e0cf95296f2df7 (diff) | |
YQ Connector: move tests from yql to ydb (OSS)
Перенос папки с тестами на Коннектор из папки yql в папку ydb (синхронизируется с github).
Diffstat (limited to 'contrib/clickhouse/src/Functions/randomFixedString.cpp')
| -rw-r--r-- | contrib/clickhouse/src/Functions/randomFixedString.cpp | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/contrib/clickhouse/src/Functions/randomFixedString.cpp b/contrib/clickhouse/src/Functions/randomFixedString.cpp new file mode 100644 index 00000000000..508fae3e824 --- /dev/null +++ b/contrib/clickhouse/src/Functions/randomFixedString.cpp @@ -0,0 +1,114 @@ +#include <Columns/ColumnFixedString.h> +#include <DataTypes/DataTypeFixedString.h> +#include <Functions/FunctionFactory.h> +#include <Functions/FunctionHelpers.h> +#include <Functions/IFunction.h> +#include <Functions/PerformanceAdaptors.h> +#include <Functions/FunctionsRandom.h> +#include <pcg_random.hpp> +#include <Common/randomSeed.h> +#include <base/arithmeticOverflow.h> +#include <base/unaligned.h> + +#include <base/defines.h> + +namespace DB +{ +namespace ErrorCodes +{ + extern const int ILLEGAL_TYPE_OF_ARGUMENT; + extern const int ILLEGAL_COLUMN; + extern const int DECIMAL_OVERFLOW; +} + +namespace +{ + +/* Generate random fixed string with fully random bytes (including zero). */ +template <typename RandImpl> +class FunctionRandomFixedStringImpl : public IFunction +{ +public: + static constexpr auto name = "randomFixedString"; + + String getName() const override { return name; } + + bool isVariadic() const override { return false; } + + bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return false; } + + size_t getNumberOfArguments() const override { return 1; } + + DataTypePtr getReturnTypeImpl(const ColumnsWithTypeAndName & arguments) const override + { + if (!isUnsignedInteger(arguments[0].type)) + throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT, "First argument for function {} must be unsigned integer", getName()); + + if (!arguments[0].column || !isColumnConst(*arguments[0].column)) + throw Exception(ErrorCodes::ILLEGAL_COLUMN, "First argument for function {} must be constant", getName()); + + const size_t n = assert_cast<const ColumnConst &>(*arguments[0].column).getValue<UInt64>(); + return std::make_shared<DataTypeFixedString>(n); + } + + bool isDeterministic() const override { return false; } + bool isDeterministicInScopeOfQuery() const override { return false; } + + ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &, size_t input_rows_count) const override + { + const size_t n = assert_cast<const ColumnConst &>(*arguments[0].column).getValue<UInt64>(); + + auto col_to = ColumnFixedString::create(n); + ColumnFixedString::Chars & data_to = col_to->getChars(); + + if (input_rows_count == 0) + return col_to; + + size_t total_size; + if (common::mulOverflow(input_rows_count, n, total_size)) + throw Exception(ErrorCodes::DECIMAL_OVERFLOW, "Decimal math overflow"); + + /// Fill random bytes. + data_to.resize(total_size); + RandImpl::execute(reinterpret_cast<char *>(data_to.data()), total_size); + + return col_to; + } +}; + +class FunctionRandomFixedString : public FunctionRandomFixedStringImpl<TargetSpecific::Default::RandImpl> +{ +public: + explicit FunctionRandomFixedString(ContextPtr context) : selector(context) + { + selector.registerImplementation<TargetArch::Default, + FunctionRandomFixedStringImpl<TargetSpecific::Default::RandImpl>>(); + + #if USE_MULTITARGET_CODE + selector.registerImplementation<TargetArch::AVX2, + FunctionRandomFixedStringImpl<TargetSpecific::AVX2::RandImpl>>(); + #endif + } + + ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr & result_type, size_t input_rows_count) const override + { + return selector.selectAndExecute(arguments, result_type, input_rows_count); + } + + static FunctionPtr create(ContextPtr context) + { + return std::make_shared<FunctionRandomFixedString>(context); + } + +private: + ImplementationSelector<IFunction> selector; +}; + +} + +REGISTER_FUNCTION(RandomFixedString) +{ + factory.registerFunction<FunctionRandomFixedString>(); +} + +} |
