| 1 | namespace DB |
|---|---|
| 2 | { |
| 3 | |
| 4 | class FunctionFactory; |
| 5 | |
| 6 | void registerFunctionRand(FunctionFactory & factory); |
| 7 | void registerFunctionRand64(FunctionFactory & factory); |
| 8 | void registerFunctionRandConstant(FunctionFactory & factory); |
| 9 | void registerFunctionGenerateUUIDv4(FunctionFactory & factory); |
| 10 | void registerFunctionRandomPrintableASCII(FunctionFactory & factory); |
| 11 | |
| 12 | void registerFunctionsRandom(FunctionFactory & factory) |
| 13 | { |
| 14 | registerFunctionRand(factory); |
| 15 | registerFunctionRand64(factory); |
| 16 | registerFunctionRandConstant(factory); |
| 17 | registerFunctionGenerateUUIDv4(factory); |
| 18 | registerFunctionRandomPrintableASCII(factory); |
| 19 | } |
| 20 | |
| 21 | } |
| 22 |