2020-05-08 14:59:58 +00:00
|
|
|
#include <Functions/FunctionUnixTimestamp64.h>
|
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2020-09-07 18:00:37 +00:00
|
|
|
namespace
|
|
|
|
{
|
2020-05-08 14:59:58 +00:00
|
|
|
|
|
|
|
struct TransformToNano
|
|
|
|
{
|
|
|
|
static constexpr auto name = "toUnixTimestamp64Nano";
|
|
|
|
static constexpr auto target_scale = 9;
|
|
|
|
using SourceDataType = DataTypeDateTime64;
|
|
|
|
using ResultDataType = DataTypeInt64;
|
|
|
|
};
|
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
}
|
|
|
|
|
2020-05-08 14:59:58 +00:00
|
|
|
void registerToUnixTimestamp64Nano(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionUnixTimestamp64<TransformToNano>>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|