mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 03:53:41 +00:00
10 lines
155 B
C++
10 lines
155 B
C++
#pragma once
|
|
|
|
#include <base/strong_typedef.h>
|
|
#include <base/extended_types.h>
|
|
|
|
namespace DB
|
|
{
|
|
using UUID = StrongTypedef<UInt128, struct UUIDTag>;
|
|
}
|