mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Add another test
This commit is contained in:
parent
1a90c569cb
commit
d8f2fed96f
@ -0,0 +1 @@
|
||||
Done
|
45
tests/queries/0_stateless/01632_tinylog_read_write.sh
Executable file
45
tests/queries/0_stateless/01632_tinylog_read_write.sh
Executable file
@ -0,0 +1,45 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
# shellcheck source=../shell_config.sh
|
||||
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
||||
. "$CURDIR"/../shell_config.sh
|
||||
|
||||
|
||||
$CLICKHOUSE_CLIENT --multiquery --query "DROP TABLE IF EXISTS test; CREATE TABLE IF NOT EXISTS test (x UInt64, s Array(Nullable(String))) ENGINE = TinyLog;"
|
||||
|
||||
function thread_select {
|
||||
while true; do
|
||||
$CLICKHOUSE_CLIENT --query "SELECT * FROM test FORMAT Null"
|
||||
sleep 0.0$RANDOM
|
||||
done
|
||||
}
|
||||
|
||||
function thread_insert {
|
||||
while true; do
|
||||
$CLICKHOUSE_CLIENT --query "INSERT INTO test VALUES (1, ['Hello'])"
|
||||
sleep 0.0$RANDOM
|
||||
done
|
||||
}
|
||||
|
||||
export -f thread_select
|
||||
export -f thread_insert
|
||||
|
||||
|
||||
# Do randomized queries and expect nothing extraordinary happens.
|
||||
|
||||
timeout 10 bash -c 'thread_select' &
|
||||
timeout 10 bash -c 'thread_select' &
|
||||
timeout 10 bash -c 'thread_select' &
|
||||
timeout 10 bash -c 'thread_select' &
|
||||
|
||||
timeout 10 bash -c 'thread_insert' &
|
||||
timeout 10 bash -c 'thread_insert' &
|
||||
timeout 10 bash -c 'thread_insert' &
|
||||
timeout 10 bash -c 'thread_insert' &
|
||||
|
||||
wait
|
||||
echo "Done"
|
||||
|
||||
$CLICKHOUSE_CLIENT --multiquery --query "DROP TABLE IF EXISTS test;"
|
Loading…
Reference in New Issue
Block a user