mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 09:02:00 +00:00
Fix 02265_column_ttl (filter out NO_REPLICA_HAS_PART errors)
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
This commit is contained in:
parent
f71cc5d706
commit
e7d02654a7
@ -37,4 +37,4 @@ attach table ttl_02265;
|
||||
--
|
||||
optimize table ttl_02265 final;
|
||||
system flush logs;
|
||||
select * from system.part_log where database = currentDatabase() and table like 'ttl_02265%' and error != 0;
|
||||
select * from system.part_log where database = currentDatabase() and table like 'ttl_02265%' and error != 0 and errorCodeToName(error) != 'NO_REPLICA_HAS_PART';
|
||||
|
Loading…
Reference in New Issue
Block a user