mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Fix 01293_system_distribution_queue flakiness
This commit is contained in:
parent
9a4f469a38
commit
a57c646467
@ -10,15 +10,15 @@ select * from system.distribution_queue;
|
|||||||
select 'INSERT';
|
select 'INSERT';
|
||||||
system stop distributed sends dist_01293;
|
system stop distributed sends dist_01293;
|
||||||
insert into dist_01293 select * from numbers(10);
|
insert into dist_01293 select * from numbers(10);
|
||||||
select is_blocked, error_count, data_files, data_compressed_bytes>100 from system.distribution_queue;
|
select is_blocked, error_count, data_files, data_compressed_bytes>100 from system.distribution_queue where database = currentDatabase();
|
||||||
system flush distributed dist_01293;
|
system flush distributed dist_01293;
|
||||||
|
|
||||||
select 'FLUSH';
|
select 'FLUSH';
|
||||||
select is_blocked, error_count, data_files, data_compressed_bytes from system.distribution_queue;
|
select is_blocked, error_count, data_files, data_compressed_bytes from system.distribution_queue where database = currentDatabase();
|
||||||
|
|
||||||
select 'UNBLOCK';
|
select 'UNBLOCK';
|
||||||
system start distributed sends dist_01293;
|
system start distributed sends dist_01293;
|
||||||
select is_blocked, error_count, data_files, data_compressed_bytes from system.distribution_queue;
|
select is_blocked, error_count, data_files, data_compressed_bytes from system.distribution_queue where database = currentDatabase();
|
||||||
|
|
||||||
drop table null_01293;
|
drop table null_01293;
|
||||||
drop table dist_01293;
|
drop table dist_01293;
|
||||||
|
Loading…
Reference in New Issue
Block a user