mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 13:32:13 +00:00
9 lines
254 B
Bash
Executable File
9 lines
254 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Tags: deadlock
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
$CLICKHOUSE_BENCHMARK --secure -i 5000 -c 32 --query 'SELECT 1' |& grep -oF 'queries: 5000'
|