We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aedc455 commit 9a922f7Copy full SHA for 9a922f7
clickhouse-cloud/run.sh
@@ -5,7 +5,7 @@ QUERY_NUM=1
5
cat queries.sql | while read -r query; do
6
echo -n "["
7
for i in $(seq 1 $TRIES); do
8
- (clickhouse-client --host "${FQDN:=localhost}" --password "${PASSWORD:=}" ${PASSWORD:+--secure} --time --format=Null --query="$query" --progress 0 2>&1 |
+ (clickhouse-client --host "${FQDN:=localhost}" --password "${PASSWORD:=}" ${PASSWORD:+--secure} --time --format=Null --query="$query" --progress 0 ${EXTRA_SETTINGS} 2>&1 |
9
grep -o -P '^\d+\.\d+$' || echo -n "null") | tr -d '\n'
10
11
[[ "$i" != $TRIES ]] && echo -n ", "
0 commit comments