mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 10:34:21 +00:00
10 lines
200 B
C++
10 lines
200 B
C++
|
#pragma once
|
||
|
|
||
|
#include <common/Types.h>
|
||
|
#include <common/strong_typedef.h>
|
||
|
|
||
|
/** Represents number of days since 1970-01-01.
|
||
|
* See DateLUTImpl for usage examples.
|
||
|
*/
|
||
|
STRONG_TYPEDEF(UInt16, DayNum)
|