#include #include namespace DB { namespace { struct Log2Name { static constexpr auto name = "log2"; }; using FunctionLog2 = FunctionMathUnary>; } void registerFunctionLog2(FunctionFactory & factory) { factory.registerFunction(FunctionFactory::CaseInsensitive); } }