mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
18 lines
391 B
C++
18 lines
391 B
C++
#include <Functions/FunctionMathUnary.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <common/preciseExp10.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct Exp10Name { static constexpr auto name = "exp10"; };
|
|
|
|
using FunctionExp10 = FunctionMathUnary<UnaryFunctionVectorized<Exp10Name, preciseExp10>>;
|
|
|
|
void registerFunctionExp10(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionExp10>();
|
|
}
|
|
|
|
}
|