mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
15 lines
312 B
C++
15 lines
312 B
C++
#include <DB/Functions/FunctionFactory.h>
|
|
#include <DB/Functions/FunctionsRandom.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void registerFunctionsRandom(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionRand>();
|
|
factory.registerFunction<FunctionRand64>();
|
|
factory.registerFunction<FunctionRandConstant>();
|
|
}
|
|
|
|
}
|