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