mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
28a2cc0a82
* Family of functions to convert DateTime64 to Int64 and back, usefull for imporintg/exporting raw timestamp values of certain precision. * Docs * Tests * Fixed ya.make
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>>();
|
|
}
|
|
|
|
}
|