aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Common/getRandomASCIIString.h
blob: 627d2700ce31cb4c9b6cbafa63f7cb55221b74c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#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);

}