mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +00:00
11 lines
236 B
C++
11 lines
236 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 len = 32, char first = 'a', char last = 'z');
|
|
|
|
}
|