mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
11 lines
351 B
Bash
11 lines
351 B
Bash
#!/usr/bin/env bash
|
|
|
|
for (( i = 0; i < 1000; i++ )); do
|
|
if (( RANDOM % 10 )); then
|
|
clickhouse-client --port=9007 --query="INSERT INTO mt (x) SELECT rand64() AS x FROM system.numbers LIMIT 100000"
|
|
else
|
|
clickhouse-client --port=9007 --query="INSERT INTO mt (x) SELECT rand64() AS x FROM system.numbers LIMIT 300000"
|
|
fi
|
|
|
|
done
|