mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 03:12:43 +00:00
21 lines
474 B
C++
21 lines
474 B
C++
|
#include <Functions/FunctionUnixTimestamp64.h>
|
||
|
#include <Functions/FunctionFactory.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
struct TransformFromNano
|
||
|
{
|
||
|
static constexpr auto name = "fromUnixTimestamp64Nano";
|
||
|
static constexpr auto target_scale = 9;
|
||
|
using SourceDataType = DataTypeInt64;
|
||
|
using ResultDataType = DataTypeDateTime64;
|
||
|
};
|
||
|
|
||
|
void registerFromUnixTimestamp64Nano(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionUnixTimestamp64<TransformFromNano>>();
|
||
|
}
|
||
|
|
||
|
}
|