mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 10:52:30 +00:00
8 lines
168 B
C++
8 lines
168 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <base/types.h>
|
|
|
|
/** Returns a number suitable as seed for PRNG. Use clock_gettime, pid and so on. */
|
|
DB::UInt64 randomSeed();
|