mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
44db6e2998
According to one of flaky check (address) runs [1] it is possible for this test to run out of 60 seconds. [1]: https://clickhouse-test-reports.s3.yandex.net/28212/a63ef6b8eb9d259b0dbb655ae2a9cba525db87e8/functional_stateless_tests_flaky_check_(address).html#fail1
31 lines
1.6 KiB
SQL
31 lines
1.6 KiB
SQL
drop table if exists rmt;
|
|
-- cleanup code will perform extra Exists
|
|
-- (so the .reference will not match)
|
|
create table rmt (n int) engine=ReplicatedMergeTree('/test/01158/{database}/rmt', '1') order by n settings cleanup_delay_period=86400;
|
|
system sync replica rmt;
|
|
insert into rmt values (1);
|
|
insert into rmt values (1);
|
|
system flush logs;
|
|
|
|
select 'log';
|
|
select address, type, has_watch, op_num, path, is_ephemeral, is_sequential, version, requests_size, request_idx, error, watch_type,
|
|
watch_state, path_created, stat_version, stat_cversion, stat_dataLength, stat_numChildren
|
|
from system.zookeeper_log where path like '/test/01158/' || currentDatabase() || '/rmt/log%' and op_num not in (3, 4, 12)
|
|
order by xid, type, request_idx;
|
|
|
|
select 'parts';
|
|
select type, has_watch, op_num, path, is_ephemeral, is_sequential, version, requests_size, request_idx, error, watch_type,
|
|
watch_state, path_created, stat_version, stat_cversion, stat_dataLength, stat_numChildren
|
|
from system.zookeeper_log
|
|
where (session_id, xid) in (select session_id, xid from system.zookeeper_log where path='/test/01158/' || currentDatabase() || '/rmt/replicas/1/parts/all_0_0_0')
|
|
order by xid, type, request_idx;
|
|
|
|
select 'blocks';
|
|
select type, has_watch, op_num, path, is_ephemeral, is_sequential, version, requests_size, request_idx, error, watch_type,
|
|
watch_state, path_created, stat_version, stat_cversion, stat_dataLength, stat_numChildren
|
|
from system.zookeeper_log
|
|
where (session_id, xid) in (select session_id, xid from system.zookeeper_log where path like '/test/01158/' || currentDatabase() || '/rmt/blocks%' and op_num not in (1, 12))
|
|
order by xid, type, request_idx;
|
|
|
|
drop table rmt;
|