ClickHouse/dbms/src/Functions/registerFunctionsRandom.cpp

13 lines
269 B
C++
Raw Normal View History

2019-12-15 06:34:43 +00:00
#include "registerFunctions.h"
namespace DB
{
void registerFunctionsRandom(FunctionFactory & factory)
{
registerFunctionRand(factory);
registerFunctionRand64(factory);
registerFunctionRandConstant(factory);
registerFunctionGenerateUUIDv4(factory);
}
}