mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
d36f52502e
It's still hackish and dirty, but server and client compies. Server starts, but throwes meaningless exception on any query. Client seems to be working fine. Linux compilation might (but shouldn't) be broken (not tested).
8 lines
171 B
C++
8 lines
171 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <DB/Core/Types.h>
|
|
|
|
/** Returns a number suitable as seed for PRNG. Use clock_gettime, pid and so on. */
|
|
DB::UInt64 randomSeed();
|