#include #include namespace DB { namespace { struct TGammaName { static constexpr auto name = "tgamma"; }; using FunctionTGamma = FunctionMathUnary>; } void registerFunctionTGamma(FunctionFactory & factory) { factory.registerFunction(); } }