This commit is contained in:
alesapin 2021-06-24 17:13:16 +03:00
parent 230286776d
commit d6fc2dcd99
2 changed files with 6 additions and 2 deletions

View File

@ -59,8 +59,11 @@ timeout $TIMEOUT bash -c optimize_thread 2> /dev/null &
wait
for i in $(seq 1 $NUM_REPLICAS); do
$CLICKHOUSE_CLIENT --query "SYSTEM SYNC REPLICA ttl_table$i"
done
$CLICKHOUSE_CLIENT --query "SELECT * FROM system.replication_queue where table like 'ttl_table%' and database = '${CLICKHOUSE_DATABASE}' and type='MERGE_PARTS' and last_exception like '%but should be merged into%' FORMAT Vertical"
$CLICKHOUSE_CLIENT --query "SELECT * FROM system.replication_queue where table like 'ttl_table%' and database = '${CLICKHOUSE_DATABASE}' and type='MERGE_PARTS' and last_exception != '' FORMAT Vertical"
$CLICKHOUSE_CLIENT --query "SELECT COUNT() > 0 FROM system.part_log where table like 'ttl_table%' and database = '${CLICKHOUSE_DATABASE}'"
for i in $(seq 1 $NUM_REPLICAS); do

View File

@ -836,6 +836,7 @@
"01870_modulo_partition_key",
"01870_buffer_flush", // creates database
"01889_postgresql_protocol_null_fields",
"01889_check_row_policy_defined_using_user_function"
"01889_check_row_policy_defined_using_user_function",
"01921_concurrent_ttl_and_normal_merges_zookeeper_long" // heavy test, better to run sequentially
]
}