2019-08-01 00:29:32 +00:00
|
|
|
#include <Functions/FunctionMathUnary.h>
|
2018-12-03 03:17:06 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2018-12-03 03:17:06 +00:00
|
|
|
struct LogName { static constexpr auto name = "log"; };
|
2019-08-01 00:29:32 +00:00
|
|
|
|
|
|
|
#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)
|
|
|
|
{
|
2019-08-01 19:17:49 +00:00
|
|
|
NFastOps::Log<true>(src, size, dst);
|
2019-08-01 00:29:32 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
using FunctionLog = FunctionMathUnary<Impl>;
|
|
|
|
|
|
|
|
#else
|
|
|
|
using FunctionLog = FunctionMathUnary<UnaryFunctionVectorized<LogName, log>>;
|
|
|
|
#endif
|
2018-12-03 03:17:06 +00:00
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
}
|
|
|
|
|
2022-07-04 07:01:39 +00:00
|
|
|
REGISTER_FUNCTION(Log)
|
2018-12-03 03:17:06 +00:00
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionLog>(FunctionFactory::CaseInsensitive);
|
|
|
|
factory.registerAlias("ln", "log", FunctionFactory::CaseInsensitive);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|