diff --git a/tests/clickhouse-test b/tests/clickhouse-test index b49a9b590d8..4fca8a8163b 100755 --- a/tests/clickhouse-test +++ b/tests/clickhouse-test @@ -371,7 +371,7 @@ class TestCase: else: # If --database is not specified, we will create temporary database with unique name # And we will recreate and drop it for each test - def random_str(length=6): + def random_str(length=8): alphabet = string.ascii_lowercase + string.digits return ''.join(random.choice(alphabet) for _ in range(length))