2019-08-30 22:43:15 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
2020-12-28 11:46:53 +00:00
|
|
|
# shellcheck source=../shell_config.sh
|
2020-08-01 00:51:12 +00:00
|
|
|
. "$CURDIR"/../shell_config.sh
|
2019-08-30 22:43:15 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
$CLICKHOUSE_CLIENT --query "DROP TABLE IF EXISTS test1";
|
|
|
|
$CLICKHOUSE_CLIENT --query "DROP TABLE IF EXISTS test2";
|
|
|
|
$CLICKHOUSE_CLIENT --query "CREATE TABLE test1 (x UInt64) ENGINE = Memory";
|
|
|
|
|
|
|
|
|
|
|
|
function thread1()
|
|
|
|
{
|
2020-12-04 02:15:44 +00:00
|
|
|
while true; do
|
2019-08-30 22:43:15 +00:00
|
|
|
seq 1 1000 | sed -r -e 's/.+/RENAME TABLE test1 TO test2; RENAME TABLE test2 TO test1;/' | $CLICKHOUSE_CLIENT -n
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
function thread2()
|
|
|
|
{
|
|
|
|
while true; do
|
2020-12-04 02:15:44 +00:00
|
|
|
$CLICKHOUSE_CLIENT --query "SELECT * FROM merge('$CLICKHOUSE_DATABASE', '^test[12]$')"
|
2019-08-30 22:43:15 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# https://stackoverflow.com/questions/9954794/execute-a-shell-function-with-timeout
|
|
|
|
export -f thread1;
|
|
|
|
export -f thread2;
|
|
|
|
|
|
|
|
TIMEOUT=10
|
|
|
|
|
|
|
|
timeout $TIMEOUT bash -c thread1 2> /dev/null &
|
|
|
|
timeout $TIMEOUT bash -c thread2 2> /dev/null &
|
|
|
|
|
|
|
|
wait
|
|
|
|
|
|
|
|
$CLICKHOUSE_CLIENT --query "DROP TABLE IF EXISTS test1";
|
|
|
|
$CLICKHOUSE_CLIENT --query "DROP TABLE IF EXISTS test2";
|