mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 02:12:21 +00:00
18 lines
161 B
C++
18 lines
161 B
C++
#pragma once
|
|
|
|
#include <Core/Types.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace UUIDHelpers
|
|
{
|
|
/// Generate random UUID.
|
|
UUID generateV4();
|
|
|
|
const UUID Nil{};
|
|
}
|
|
|
|
}
|