Shellcheck

This commit is contained in:
Alexey Milovidov 2023-12-10 19:06:38 +01:00
parent 070934afad
commit bb501a0e13

View File

@ -33,7 +33,7 @@ clickhouse-client --time < /create.sql
TRIES=3
QUERY_NUM=1
while read query; do
while read -r query; do
echo -n "["
for i in $(seq 1 $TRIES); do
RES=$(clickhouse-client --time --format Null --query "$query" --progress 0 2>&1 ||:)