mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
22 lines
502 B
C++
22 lines
502 B
C++
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class FunctionFactory;
|
||
|
|
||
|
void registerFunctionRand(FunctionFactory & factory);
|
||
|
void registerFunctionRand64(FunctionFactory & factory);
|
||
|
void registerFunctionRandConstant(FunctionFactory & factory);
|
||
|
void registerFunctionGenerateUUIDv4(FunctionFactory & factory);
|
||
|
|
||
|
void registerFunctionsRandom(FunctionFactory & factory)
|
||
|
{
|
||
|
registerFunctionRand(factory);
|
||
|
registerFunctionRand64(factory);
|
||
|
registerFunctionRandConstant(factory);
|
||
|
registerFunctionGenerateUUIDv4(factory);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|