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