mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 02:52:13 +00:00
Fix 02943_rmt_alter_metadata_merge_checksum_mismatch (filter out NO_REPLICA_HAS_PART errors)
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
This commit is contained in:
parent
fb0ad3eb15
commit
f71cc5d706
@ -95,4 +95,4 @@ trap '' EXIT
|
||||
|
||||
$CLICKHOUSE_CLIENT -q "system flush logs"
|
||||
# check for error "Different number of files: 5 compressed (expected 3) and 2 uncompressed ones (expected 2). (CHECKSUM_DOESNT_MATCH)"
|
||||
$CLICKHOUSE_CLIENT -q "select part_name, merge_reason, event_type, errorCodeToName(error) from system.part_log where database = '$CLICKHOUSE_DATABASE' and error != 0 order by event_time_microseconds"
|
||||
$CLICKHOUSE_CLIENT -q "select part_name, merge_reason, event_type, errorCodeToName(error) from system.part_log where database = '$CLICKHOUSE_DATABASE' and error != 0 and errorCodeToName(error) != 'NO_REPLICA_HAS_PART' order by event_time_microseconds"
|
||||
|
Loading…
Reference in New Issue
Block a user