mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +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 TransformFromMilli
|
|
{
|
|
static constexpr auto name = "fromUnixTimestamp64Milli";
|
|
static constexpr auto target_scale = 3;
|
|
using SourceDataType = DataTypeInt64;
|
|
using ResultDataType = DataTypeDateTime64;
|
|
};
|
|
|
|
void registerFromUnixTimestamp64Milli(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionUnixTimestamp64<TransformFromMilli>>();
|
|
}
|
|
|
|
}
|