mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
2efbeab5af
In debug bulds each client invocation takes ~1 second, and on CI it can take more if the node is under some load, so let's decrease number of iterations. Anyway CI runs each test ~1K times daily, and if there will be something even this number of iterations should be enough. Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
26 lines
578 B
Bash
Executable File
26 lines
578 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Tags: no-fasttest
|
|
set -e
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
${CLICKHOUSE_CLIENT} --query "DROP TABLE IF EXISTS parallel_ddl"
|
|
|
|
function query()
|
|
{
|
|
for _ in {1..50}; do
|
|
${CLICKHOUSE_CLIENT} --query "CREATE TABLE IF NOT EXISTS parallel_ddl(a Int) ENGINE = Memory"
|
|
${CLICKHOUSE_CLIENT} --query "DROP TABLE IF EXISTS parallel_ddl"
|
|
done
|
|
}
|
|
|
|
for _ in {1..2}; do
|
|
query &
|
|
done
|
|
|
|
wait
|
|
|
|
${CLICKHOUSE_CLIENT} --query "DROP TABLE IF EXISTS parallel_ddl"
|