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

11 lines
270 B
Bash
Executable File

#!/bin/bash
TRIES=3
cat queries.sql | while read query; do
echo "$query";
for i in $(seq 1 $TRIES); do
psql -h "${HOST}" -U awsuser -d dev -p 5439 -t -c 'SET enable_result_cache_for_session = off' -c '\timing' -c "$query" | grep 'Time'
done;
done;