diff --git a/tests/queries/0_stateless/00002_log_and_exception_messages_formatting.sql b/tests/queries/0_stateless/00002_log_and_exception_messages_formatting.sql index 3a83126ea11..dfa11dfcb13 100644 --- a/tests/queries/0_stateless/00002_log_and_exception_messages_formatting.sql +++ b/tests/queries/0_stateless/00002_log_and_exception_messages_formatting.sql @@ -56,13 +56,13 @@ SELECT WHERE length(message_format_string) = 0 AND (message like '%DB::Exception%' or message like '%Coordination::Exception%') - AND message not like '% Received from %' and message not like '%(SYNTAX_ERROR)%' + AND message not like '% Received from %' and message not like '%(SYNTAX_ERROR)%' and message not like '%Fault injection%' GROUP BY message ORDER BY c LIMIT 10 )) FROM logs WHERE (message like '%DB::Exception%' or message like '%Coordination::Exception%') - AND message not like '% Received from %' and message not like '%(SYNTAX_ERROR)%'; + AND message not like '% Received from %' and message not like '%(SYNTAX_ERROR)%' and message not like '%Fault injection%'; -- FIXME some of the following messages are not informative and it has to be fixed