mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 10:34:21 +00:00
25 lines
481 B
C++
25 lines
481 B
C++
#include <Functions/FunctionUnixTimestamp64.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
|
|
struct TransformToNano
|
|
{
|
|
static constexpr auto name = "toUnixTimestamp64Nano";
|
|
static constexpr auto target_scale = 9;
|
|
using SourceDataType = DataTypeDateTime64;
|
|
using ResultDataType = DataTypeInt64;
|
|
};
|
|
|
|
}
|
|
|
|
void registerToUnixTimestamp64Nano(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionUnixTimestamp64<TransformToNano>>();
|
|
}
|
|
|
|
}
|