ClickHouse/benchmark/monetdb/run.sh
Alexey Milovidov e493c46fdd Some results
2022-07-04 15:12:12 +02:00

13 lines
204 B
Bash
Executable File

#!/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
./query.expect "$query" 2>&1
done;
done;