Merge pull request #12734 from ClickHouse/aku/stress-fuzz

Try query fuzzer in stress test
This commit is contained in:
alexey-milovidov 2020-07-24 15:26:29 +03:00 committed by GitHub
commit 4fe85e529b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1563,7 +1563,7 @@ void Context::reloadClusterConfig()
return;
}
/// Clusters config has been suddenly changed, recompute clusters
// Clusters config has been suddenly changed, recompute clusters
}
}
}

View File

@ -6,7 +6,7 @@ trap 'kill -9 $(jobs -p)' EXIT
function thread()
{
while true; do
./clickhouse-test --order random 2>&1 | awk '/^\w+:/ { printf("\033[0;%s%sm \033[0m", ('$1' % 2 ? "4" : "10"), (int('$1' / 2) % 8)) }'
./clickhouse-test --client-option="query-fuzzer-runs=10" --order random 2>&1 | awk '/^\w+:/ { printf("\033[0;%s%sm \033[0m", ('$1' % 2 ? "4" : "10"), (int('$1' / 2) % 8)) }'
done
}