| 1 | namespace DB |
|---|---|
| 2 | { |
| 3 | |
| 4 | class FunctionFactory; |
| 5 | |
| 6 | void registerFunctionE(FunctionFactory & factory); |
| 7 | void registerFunctionPi(FunctionFactory & factory); |
| 8 | void registerFunctionExp(FunctionFactory & factory); |
| 9 | void registerFunctionLog(FunctionFactory & factory); |
| 10 | void registerFunctionExp2(FunctionFactory & factory); |
| 11 | void registerFunctionLog2(FunctionFactory & factory); |
| 12 | void registerFunctionExp10(FunctionFactory & factory); |
| 13 | void registerFunctionLog10(FunctionFactory & factory); |
| 14 | void registerFunctionSqrt(FunctionFactory & factory); |
| 15 | void registerFunctionCbrt(FunctionFactory & factory); |
| 16 | void registerFunctionErf(FunctionFactory & factory); |
| 17 | void registerFunctionErfc(FunctionFactory & factory); |
| 18 | void registerFunctionLGamma(FunctionFactory & factory); |
| 19 | void registerFunctionTGamma(FunctionFactory & factory); |
| 20 | void registerFunctionSin(FunctionFactory & factory); |
| 21 | void registerFunctionCos(FunctionFactory & factory); |
| 22 | void registerFunctionTan(FunctionFactory & factory); |
| 23 | void registerFunctionAsin(FunctionFactory & factory); |
| 24 | void registerFunctionAcos(FunctionFactory & factory); |
| 25 | void registerFunctionAtan(FunctionFactory & factory); |
| 26 | void registerFunctionSigmoid(FunctionFactory & factory); |
| 27 | void registerFunctionTanh(FunctionFactory & factory); |
| 28 | void registerFunctionPow(FunctionFactory & factory); |
| 29 | |
| 30 | |
| 31 | void registerFunctionsMath(FunctionFactory & factory) |
| 32 | { |
| 33 | registerFunctionE(factory); |
| 34 | registerFunctionPi(factory); |
| 35 | registerFunctionExp(factory); |
| 36 | registerFunctionLog(factory); |
| 37 | registerFunctionExp2(factory); |
| 38 | registerFunctionLog2(factory); |
| 39 | registerFunctionExp10(factory); |
| 40 | registerFunctionLog10(factory); |
| 41 | registerFunctionSqrt(factory); |
| 42 | registerFunctionCbrt(factory); |
| 43 | registerFunctionErf(factory); |
| 44 | registerFunctionErfc(factory); |
| 45 | registerFunctionLGamma(factory); |
| 46 | registerFunctionTGamma(factory); |
| 47 | registerFunctionSin(factory); |
| 48 | registerFunctionCos(factory); |
| 49 | registerFunctionTan(factory); |
| 50 | registerFunctionAsin(factory); |
| 51 | registerFunctionAcos(factory); |
| 52 | registerFunctionAtan(factory); |
| 53 | registerFunctionSigmoid(factory); |
| 54 | registerFunctionTanh(factory); |
| 55 | registerFunctionPow(factory); |
| 56 | } |
| 57 | |
| 58 | } |
| 59 |