#include #include namespace DB { void registerFromUnixTimestamp64Nano(FunctionFactory & factory) { factory.registerFunction("fromUnixTimestamp64Nano", [](ContextPtr){ return std::make_unique( std::make_shared(9, "fromUnixTimestamp64Nano")); }); } }