mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
Merge pull request #47553 from azat/tests/flakiness-v1
Fix some flaky tests
This commit is contained in:
commit
a0663e00cb
@ -1,2 +1,2 @@
|
||||
10 querystart OK
|
||||
10 queryfinish OK
|
||||
11 queryfinish OK
|
||||
11 querystart OK
|
||||
|
@ -9,6 +9,8 @@ set log_queries=1;
|
||||
drop table if exists log_proxy_02572;
|
||||
drop table if exists push_to_logs_proxy_mv_02572;
|
||||
|
||||
-- create log tables
|
||||
system flush logs;
|
||||
create table log_proxy_02572 as system.query_log engine=Distributed('test_shard_localhost', currentDatabase(), 'receiver_02572');
|
||||
create materialized view push_to_logs_proxy_mv_02572 to log_proxy_02572 as select * from system.query_log;
|
||||
|
||||
@ -23,4 +25,6 @@ system flush logs;
|
||||
-- lower() to pass through clickhouse-test "exception" check
|
||||
select count(), lower(type::String), errorCodeToName(exception_code)
|
||||
from system.query_log
|
||||
where current_database = currentDatabase() group by 2, 3;
|
||||
where current_database = currentDatabase()
|
||||
group by 2, 3
|
||||
order by 2;
|
||||
|
Loading…
Reference in New Issue
Block a user