From f5cc48557838da8695d2ccd453c2c50b4e52286e Mon Sep 17 00:00:00 2001 From: filimonov <1549571+filimonov@users.noreply.github.com> Date: Sat, 26 Oct 2024 08:17:48 +0200 Subject: [PATCH] Update 02310_clickhouse_local_INSERT_progress_profile_events.expect Adjust number of events (addressing review comment) --- ...0_clickhouse_local_INSERT_progress_profile_events.expect | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/queries/0_stateless/02310_clickhouse_local_INSERT_progress_profile_events.expect b/tests/queries/0_stateless/02310_clickhouse_local_INSERT_progress_profile_events.expect index 9f9c3ad2169..a92d47643e5 100755 --- a/tests/queries/0_stateless/02310_clickhouse_local_INSERT_progress_profile_events.expect +++ b/tests/queries/0_stateless/02310_clickhouse_local_INSERT_progress_profile_events.expect @@ -34,15 +34,15 @@ expect_after { # The sleep command in the bash loop ensures that interactive_delay will be reached. spawn bash -c " source $basedir/../shell_config.sh; \ - for i in {1..10}; do \ - yes | head -n 10; \ + for i in {1..100}; do \ + yes | head -n 100; \ sleep 0.1; \ done | \$CLICKHOUSE_LOCAL \ --progress \ --interactive_delay=100 \ --min_chunk_bytes_for_parallel_parsing=1 \ --input_format_parallel_parsing=1 \ - --max_threads=1 \ + --max_threads=4 \ --query \"insert into function null('foo String') format TSV\" "