mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
29 lines
1.5 KiB
SQL
29 lines
1.5 KiB
SQL
drop table if exists rmt;
|
|
create table rmt (n int) engine=ReplicatedMergeTree('/test/01158/{database}/rmt', '1') order by n;
|
|
system sync replica rmt;
|
|
insert into rmt values (1);
|
|
insert into rmt values (1);
|
|
system flush logs;
|
|
|
|
select 'log';
|
|
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 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;
|