Attempt to fix flacky test

This commit is contained in:
Alexey Milovidov 2020-05-29 17:09:28 +03:00
parent 080b2ec891
commit e940229e71
2 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
replica_01108_1_tmp
replica_01108_2_tmp
replica_01108_3_tmp
replica_01108_4_tmp
replica_01108_1
replica_01108_2
replica_01108_3
replica_01108_4
1180 40

View File

@ -53,7 +53,7 @@ export -f rename_thread_2;
export -f restart_thread_1;
export -f restart_thread_2;
TIMEOUT=30
TIMEOUT=10
timeout $TIMEOUT bash -c rename_thread_1 2> /dev/null &
timeout $TIMEOUT bash -c rename_thread_2 2> /dev/null &
@ -68,7 +68,7 @@ for i in `seq 4`; do
$CLICKHOUSE_CLIENT -q "SYSTEM SYNC REPLICA replica_01108_${i}_tmp" >/dev/null 2>&1
done
$CLICKHOUSE_CLIENT -q "SHOW TABLES LIKE 'replica\\_01108\\_%'"
$CLICKHOUSE_CLIENT -q "SELECT replaceOne(name, '_tmp', '') FROM system.tables WHERE database = currentDatabase() AND match(name, '^replica_01108_')"
$CLICKHOUSE_CLIENT -q "SELECT sum(n), count(n) FROM merge(currentDatabase(), '^replica_01108_') GROUP BY position(_table, 'tmp')"