mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
8 lines
168 B
C++
8 lines
168 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <Core/Types.h>
|
|
|
|
/** Returns a number suitable as seed for PRNG. Use clock_gettime, pid and so on. */
|
|
DB::UInt64 randomSeed();
|