blob: 3c50f9943911cc47e65b908e64d7d02881715f5a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <Functions/FunctionMathUnary.h>
#include <Functions/FunctionFactory.h>
namespace DB
{
namespace
{
struct SqrtName { static constexpr auto name = "sqrt"; };
using FunctionSqrt = FunctionMathUnary<UnaryFunctionVectorized<SqrtName, sqrt>>;
}
REGISTER_FUNCTION(Sqrt)
{
factory.registerFunction<FunctionSqrt>({}, FunctionFactory::CaseInsensitive);
}
}
|