ClickHouse/benchmark/postgresql/run.sh

14 lines
263 B
Bash
Raw Normal View History

2022-06-26 04:00:07 +00:00
#!/bin/bash
TRIES=3
cat queries.sql | while read query; do
sync
echo 3 | sudo tee /proc/sys/vm/drop_caches
echo "$query";
for i in $(seq 1 $TRIES); do
sudo -u postgres psql test -t -c '\timing' -c "$query" | grep 'Time'
done;
done;