Fix flappy test (descrease number of iterations)

This commit is contained in:
alesapin 2019-08-29 11:02:50 +03:00
parent b4339f266d
commit d3b378ea10

View File

@ -8,7 +8,7 @@ $CLICKHOUSE_CLIENT --query="DROP TABLE IF EXISTS table_for_concurrent_alter"
$CLICKHOUSE_CLIENT --query="CREATE TABLE table_for_concurrent_alter (id UInt64, Data String) ENGINE = MergeTree() ORDER BY id SETTINGS index_granularity=4096;";
n=0
while [ "$n" -lt 100 ];
while [ "$n" -lt 50 ];
do
n=$(( n + 1 ))
$CLICKHOUSE_CLIENT --query="INSERT INTO table_for_concurrent_alter VALUES(1, 'Hello')" > /dev/null 2> /dev/null &
@ -17,7 +17,7 @@ done &
q=0
while [ "$q" -lt 100 ];
while [ "$q" -lt 50 ];
do
q=$(( q + 1 ))
counter=$(( 100 + q ))