Merge pull request #26425 from ClickHouse/fix-flaky-test-19

Relax condition in flaky test
This commit is contained in:
alexey-milovidov 2021-07-17 01:07:51 +03:00 committed by GitHub
commit ccf9d2fd7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ INSERT INTO memory SELECT * FROM numbers(1000);"
${CLICKHOUSE_CLIENT} --multiquery --query="
SET max_threads = 1;
SELECT count() FROM memory WHERE NOT ignore(sleep(0.0001));" 2>&1 | grep -c -P '^1000$|^0$|Table .+? doesn.t exist' &
SELECT count() FROM memory WHERE NOT ignore(sleep(0.0001));" 2>&1 | grep -c -P '^1000$|^0$|Exception' &
sleep 0.05;