mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 04:22:03 +00:00
25 lines
485 B
C++
25 lines
485 B
C++
#include <Functions/FunctionUnixTimestamp64.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
|
|
struct TransformToMicro
|
|
{
|
|
static constexpr auto name = "toUnixTimestamp64Micro";
|
|
static constexpr auto target_scale = 6;
|
|
using SourceDataType = DataTypeDateTime64;
|
|
using ResultDataType = DataTypeInt64;
|
|
};
|
|
|
|
}
|
|
|
|
void registerToUnixTimestamp64Micro(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionUnixTimestamp64<TransformToMicro>>();
|
|
}
|
|
|
|
}
|