2012-07-15 23:13:08 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
|
|
#include <Columns/ColumnVector.h>
|
2019-12-09 13:12:54 +00:00
|
|
|
#include <Functions/IFunctionImpl.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <IO/WriteHelpers.h>
|
2012-07-15 23:13:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2017-06-13 02:06:53 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
|
|
|
|
}
|
|
|
|
|
2017-05-27 15:45:25 +00:00
|
|
|
/** Pseudo-random number generation functions.
|
|
|
|
* The function can be called without arguments or with one argument.
|
|
|
|
* The argument is ignored and only serves to ensure that several calls to one function are considered different and do not stick together.
|
2014-08-17 08:28:03 +00:00
|
|
|
*
|
2017-05-27 15:45:25 +00:00
|
|
|
* Example:
|
|
|
|
* SELECT rand(), rand() - will output two identical columns.
|
|
|
|
* SELECT rand(1), rand(2) - will output two different columns.
|
2012-07-15 23:13:08 +00:00
|
|
|
*
|
2017-05-27 15:45:25 +00:00
|
|
|
* Non-cryptographic generators:
|
2014-08-17 08:28:03 +00:00
|
|
|
*
|
2019-01-22 19:56:53 +00:00
|
|
|
* rand - linear congruential generator 0 .. 2^32 - 1.
|
2017-05-27 15:45:25 +00:00
|
|
|
* rand64 - combines several rand values to get values from the range 0 .. 2^64 - 1.
|
2012-07-15 23:13:08 +00:00
|
|
|
*
|
2017-05-27 15:45:25 +00:00
|
|
|
* randConstant - service function, produces a constant column with a random value.
|
2015-09-07 17:56:56 +00:00
|
|
|
*
|
2017-05-27 15:45:25 +00:00
|
|
|
* The time is used as the seed.
|
|
|
|
* Note: it is reinitialized for each block.
|
|
|
|
* This means that the timer must be of sufficient resolution to give different values to each block.
|
2012-07-15 23:13:08 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
struct RandImpl
|
|
|
|
{
|
2018-12-02 01:57:01 +00:00
|
|
|
/// Fill memory with random data. The memory region must be 15-bytes padded.
|
|
|
|
static void execute(char * output, size_t size);
|
2012-07-15 23:13:08 +00:00
|
|
|
};
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-12-02 01:57:01 +00:00
|
|
|
template <typename ToType, typename Name>
|
2012-07-15 23:13:08 +00:00
|
|
|
class FunctionRandom : public IFunction
|
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
static constexpr auto name = Name::name;
|
2017-12-01 21:51:50 +00:00
|
|
|
static FunctionPtr create(const Context &) { return std::make_shared<FunctionRandom>(); }
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
String getName() const override
|
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
2019-10-10 14:38:08 +00:00
|
|
|
bool isDeterministic() const override { return false; }
|
|
|
|
bool isDeterministicInScopeOfQuery() const override { return false; }
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
bool isVariadic() const override { return true; }
|
|
|
|
size_t getNumberOfArguments() const override { return 0; }
|
|
|
|
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
|
|
{
|
|
|
|
if (arguments.size() > 1)
|
|
|
|
throw Exception("Number of arguments for function " + getName() + " doesn't match: passed "
|
|
|
|
+ toString(arguments.size()) + ", should be 0 or 1.",
|
|
|
|
ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
|
|
|
|
|
2018-12-02 01:57:01 +00:00
|
|
|
return std::make_shared<DataTypeNumber<ToType>>();
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2018-04-24 07:16:39 +00:00
|
|
|
void executeImpl(Block & block, const ColumnNumbers &, size_t result, size_t input_rows_count) override
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-12-14 01:43:19 +00:00
|
|
|
auto col_to = ColumnVector<ToType>::create();
|
2017-12-15 21:32:25 +00:00
|
|
|
typename ColumnVector<ToType>::Container & vec_to = col_to->getData();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-04-24 07:16:39 +00:00
|
|
|
size_t size = input_rows_count;
|
2017-04-01 07:20:54 +00:00
|
|
|
vec_to.resize(size);
|
2018-12-02 01:57:01 +00:00
|
|
|
RandImpl::execute(reinterpret_cast<char *>(vec_to.data()), vec_to.size() * sizeof(ToType));
|
2017-12-16 05:21:04 +00:00
|
|
|
|
|
|
|
block.getByPosition(result).column = std::move(col_to);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2012-07-15 23:13:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|