mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
13 lines
348 B
Bash
Executable File
13 lines
348 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
$CLICKHOUSE_BENCHMARK --iterations 10 --query "SELECT 1" 1>/dev/null 2>"$CLICKHOUSE_TMP"/err
|
|
|
|
cat "$CLICKHOUSE_TMP"/err | grep Exception
|
|
cat "$CLICKHOUSE_TMP"/err | grep Loaded
|
|
|
|
rm "$CLICKHOUSE_TMP"/err
|