ClickHouse/benchmark/compatible/mariadb-columnstore/run.sh

13 lines
247 B
Bash
Raw Normal View History

2022-06-27 07:33:42 +00:00
#!/bin/bash
TRIES=3
cat queries.sql | while read query; do
sync
echo 3 | sudo tee /proc/sys/vm/drop_caches
for i in $(seq 1 $TRIES); do
mysql --password="${PASSWORD}" --host 127.0.0.1 -vvv test -e "${query}"
done;
done;