mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
42 lines
724 B
C++
42 lines
724 B
C++
#pragma once
|
|
|
|
#include <common/Common.h> /// VisitID_t
|
|
|
|
#include <DB/Core/Field.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
/// Перевести что угодно в Field.
|
|
template <typename T>
|
|
inline Field toField(const T & x)
|
|
{
|
|
return Field(typename NearestFieldType<T>::Type(x));
|
|
}
|
|
|
|
inline Field toField(const LocalDate & x)
|
|
{
|
|
return toField(static_cast<UInt16>(x.getDayNum()));
|
|
}
|
|
|
|
inline Field toField(const LocalDateTime & x)
|
|
{
|
|
return toField(static_cast<UInt32>(static_cast<time_t>(x)));
|
|
}
|
|
|
|
inline Field toField(const VisitID_t & x)
|
|
{
|
|
return toField(static_cast<UInt64>(x));
|
|
}
|
|
|
|
template <typename T>
|
|
inline Field toField(const mysqlxx::Null<T> & x)
|
|
{
|
|
return x.isNull() ? Field(Null()) : toField(static_cast<const T &>(x));
|
|
}
|
|
|
|
|
|
}
|