mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
4535232f4a
Fixes: #14228
20 lines
746 B
Django/Jinja
20 lines
746 B
Django/Jinja
-- { echo }
|
|
{% for host in ['127.1', '127.2'] -%}
|
|
{% for args, comment in [
|
|
("'system.one'", host + ' db.name literal'),
|
|
("'system', 'one'", host + ' db,name literal'),
|
|
("system.one", host + ' db.name identifier'),
|
|
("system, one", host + ' db,name identifier'),
|
|
] -%}
|
|
select * from remote('{{host}}', {{args}}) settings log_queries=1, log_comment='{{comment}}' format Null;
|
|
system flush logs;
|
|
select count() from system.query_log where
|
|
type = 'QueryFinish' and
|
|
not is_initial_query and
|
|
startsWith(query, 'DESC') and
|
|
initial_query_id = (
|
|
select distinct query_id from system.query_log where log_comment = '{{comment}}' and current_database = currentDatabase()
|
|
);
|
|
{% endfor -%}
|
|
{% endfor -%}
|