mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 02:41:59 +00:00
13 lines
198 B
C++
13 lines
198 B
C++
#pragma once
|
|
|
|
#include <Core/Types.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Slow random string. Useful for random names and things like this. Not for generating data.
|
|
String getRandomASCIIString(size_t length);
|
|
|
|
}
|