aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/log.cpp
blob: 9096b8c6f22bfdf7d488d9ebb9aa1d3d8f1a7007 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <Functions/FunctionMathUnary.h>
#include <Functions/FunctionFactory.h>

namespace DB
{

namespace
{

struct LogName { static constexpr auto name = "log"; };

#if USE_FASTOPS

    struct Impl
    {
        static constexpr auto name = LogName::name;
        static constexpr auto rows_per_iteration = 0;
        static constexpr bool always_returns_float64 = false;

        template <typename T>
        static void execute(const T * src, size_t size, T * dst)
        {
            NFastOps::Log<true>(src, size, dst);
        }
    };

using FunctionLog = FunctionMathUnary<Impl>;

#else
using FunctionLog = FunctionMathUnary<UnaryFunctionVectorized<LogName, log>>;
#endif

}

REGISTER_FUNCTION(Log)
{
    factory.registerFunction<FunctionLog>({}, FunctionFactory::CaseInsensitive);
    factory.registerAlias("ln", "log", FunctionFactory::CaseInsensitive);
}

}