#include #include namespace DB { REGISTER_FUNCTION(ToUnixTimestamp64Nano) { factory.registerFunction("toUnixTimestamp64Nano", [](ContextPtr){ return std::make_unique( std::make_shared(9, "toUnixTimestamp64Nano")); }); } }