diff --git a/.github/actions/runner_setup/action.yml b/.github/actions/runner_setup/action.yml index 0241d2dd26e2..e978d8f57a74 100644 --- a/.github/actions/runner_setup/action.yml +++ b/.github/actions/runner_setup/action.yml @@ -3,6 +3,13 @@ description: Setup environment runs: using: "composite" steps: + - name: Configure docker proxy and dataset mirror host + shell: bash + run: | + proxy_host=dockerhub-proxy.dockerhub-proxy-zone + if ! timeout 5 getent ahostsv4 "$proxy_host" >/dev/null; then + echo "65.108.242.32 $proxy_host" | sudo tee -a /etc/hosts + fi - name: Setup zram shell: bash run: | diff --git a/ci/jobs/stress_job.py b/ci/jobs/stress_job.py index 7eeb5b8a070d..df09b3f70194 100644 --- a/ci/jobs/stress_job.py +++ b/ci/jobs/stress_job.py @@ -1,6 +1,7 @@ import csv import logging import os +import socket import sys from pathlib import Path from typing import List, Tuple @@ -169,12 +170,24 @@ def get_run_command( else: run_script = "/repo/tests/docker_scripts/stress_runner.sh" + # Nested docker does not inherit the runner /etc/hosts. + # --network=host would expose minio and azurite. Skip --add-host when the + # name is unknown (CI Tests e2e / local) rather than failing the job. + proxy_host = "dockerhub-proxy.dockerhub-proxy-zone" + add_host = "" + try: + proxy_ip = socket.getaddrinfo(proxy_host, None)[0][4][0] + add_host = f"--add-host={proxy_host}:{proxy_ip} " + except OSError: + logging.info("Could not resolve %s; not passing --add-host", proxy_host) + cmd = ( "docker run --cap-add=SYS_PTRACE " # For dmesg and sysctl "--privileged " # azurite-rs (in-process Azure Blob Storage emulator) needs many fds under parallel load "--ulimit nofile=1048576:1048576 " + f"{add_host}" # a static link, don't use S3_URL or S3_DOWNLOAD "-e S3_URL='https://s3.amazonaws.com/clickhouse-datasets' " "--tmpfs /tmp/clickhouse:mode=1777 " diff --git a/ci/praktika/runner.py b/ci/praktika/runner.py index e02fbae0b076..795c2991d5c1 100644 --- a/ci/praktika/runner.py +++ b/ci/praktika/runner.py @@ -5,6 +5,7 @@ import os import re import shlex +import socket import sys import traceback from pathlib import Path @@ -446,6 +447,18 @@ def _run( ) from_root = "root" in docker_settings settings = [s for s in docker_settings if s.startswith("-")] + # NOTE (strtgbb): FT/integration docker is not --network=host, so + # the runner /etc/hosts mapping for the web-disk proxy is invisible + # inside the container. Resolve on the host and pass --add-host. + # Skip if the name is not configured on this runner (e.g. CI Tests). + _proxy_host = "dockerhub-proxy.dockerhub-proxy-zone" + try: + _proxy_ip = socket.getaddrinfo(_proxy_host, None)[0][4][0] + settings.append(f"--add-host={_proxy_host}:{_proxy_ip}") + except OSError as e: + print( + f"NOTE: skipping --add-host for {_proxy_host}: {e}" + ) if ":" in job.run_in_docker: docker_name, docker_tag = job.run_in_docker.split(":") print( diff --git a/tests/docker_scripts/create.sql b/tests/docker_scripts/create.sql index 20c345e48171..d571da10d25a 100644 --- a/tests/docker_scripts/create.sql +++ b/tests/docker_scripts/create.sql @@ -141,7 +141,7 @@ SAMPLE BY intHash32(UserID) SETTINGS table_disk = 1, disk = disk(type = cache, path = 'filesystem_caches/stateful/', max_size = '4G', - disk = disk(type = web, endpoint = 'https://clickhouse-datasets-web.s3.us-east-1.amazonaws.com/store/78e/78ebf6a1-d987-4579-b3ec-00c1a087b1f3/')); + disk = disk(type = web, endpoint = 'http://dockerhub-proxy.dockerhub-proxy-zone:6000/datasets-web/store/78e/78ebf6a1-d987-4579-b3ec-00c1a087b1f3/')); CREATE TABLE datasets.visits_v1 ( @@ -334,4 +334,4 @@ SAMPLE BY intHash32(UserID) SETTINGS table_disk = 1, disk = disk(type = cache, path = 'filesystem_caches/stateful/', max_size = '4G', - disk = disk(type = web, endpoint = 'https://clickhouse-datasets-web.s3.us-east-1.amazonaws.com/store/513/5131f834-711f-4168-98a5-968b691a104b/')); + disk = disk(type = web, endpoint = 'http://dockerhub-proxy.dockerhub-proxy-zone:6000/datasets-web/store/513/5131f834-711f-4168-98a5-968b691a104b/')); diff --git a/tests/docker_scripts/create_tpcds.sh b/tests/docker_scripts/create_tpcds.sh index 82587a842e12..cb316c4c8253 100755 --- a/tests/docker_scripts/create_tpcds.sh +++ b/tests/docker_scripts/create_tpcds.sh @@ -5,7 +5,7 @@ set -euo pipefail REPO_ROOT="$(cd "$(dirname "$0")/../.." && pwd)" INIT_SQL="$REPO_ROOT/tests/benchmarks/tpc-ds/init.sql" -S3_BASE="https://tpc-ds-sf1.s3.amazonaws.com" +S3_BASE="http://dockerhub-proxy.dockerhub-proxy-zone:6000/tpc-ds-sf1" clickhouse-client --query "CREATE DATABASE IF NOT EXISTS tpcds" diff --git a/tests/queries/0_stateless/04033_tpc_ds_q01.sh b/tests/queries/0_stateless/04033_tpc_ds_q01.sh index a094a463e456..d1d2ed00fff5 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q01.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q01.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q02.sh b/tests/queries/0_stateless/04033_tpc_ds_q02.sh index 74fdf473ea8f..c94a6bb6958a 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q02.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q02.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q03.sh b/tests/queries/0_stateless/04033_tpc_ds_q03.sh index 9c4a043271f3..945a47a425f3 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q03.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q03.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q04.sh b/tests/queries/0_stateless/04033_tpc_ds_q04.sh index 85eadda3fcbc..4801ac438420 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q04.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q04.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q05.sh b/tests/queries/0_stateless/04033_tpc_ds_q05.sh index d9b104b2ce58..4512e6ad5aa6 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q05.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q05.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q06.sh b/tests/queries/0_stateless/04033_tpc_ds_q06.sh index 456d4e42e337..7f61d7bb88fa 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q06.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q06.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q07.sh b/tests/queries/0_stateless/04033_tpc_ds_q07.sh index 0bf34b216275..00433bfb88cd 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q07.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q07.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q08.sh b/tests/queries/0_stateless/04033_tpc_ds_q08.sh index 7e5b40f5cf4c..a75d9ec34d35 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q08.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q08.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q09.sh b/tests/queries/0_stateless/04033_tpc_ds_q09.sh index 893e628cfd95..3e02e23eb0be 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q09.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q09.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q10.sh b/tests/queries/0_stateless/04033_tpc_ds_q10.sh index 41922d1f1f93..d483da297624 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q10.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q10.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q11.sh b/tests/queries/0_stateless/04033_tpc_ds_q11.sh index 548040922b84..8ddd470b13cc 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q11.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q11.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q12.sh b/tests/queries/0_stateless/04033_tpc_ds_q12.sh index 02e0faa34cc8..ee1745bf0ac4 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q12.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q12.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q13.sh b/tests/queries/0_stateless/04033_tpc_ds_q13.sh index 4595925ac056..501c22dfea77 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q13.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q13.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q14.sh b/tests/queries/0_stateless/04033_tpc_ds_q14.sh index 8755205a4b21..cbe2ed6d2f3a 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q14.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q14.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q15.sh b/tests/queries/0_stateless/04033_tpc_ds_q15.sh index 3c25cb8ace57..fafd3d801e40 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q15.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q15.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q16.sh b/tests/queries/0_stateless/04033_tpc_ds_q16.sh index bc73f1cb8bb5..64e3926a8d06 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q16.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q16.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q17.sh b/tests/queries/0_stateless/04033_tpc_ds_q17.sh index 84f94d8e4cb2..29f776116639 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q17.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q17.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. # Known issue: `stddev_samp` returns nan instead of NULL on single value (https://github.com/ClickHouse/ClickHouse/issues/94683). # Once the issue is fixed, update the .reference file. diff --git a/tests/queries/0_stateless/04033_tpc_ds_q18.sh b/tests/queries/0_stateless/04033_tpc_ds_q18.sh index f1b43202967c..92a6438a3cf9 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q18.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q18.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q19.sh b/tests/queries/0_stateless/04033_tpc_ds_q19.sh index 3428b1af69ec..e8d9e749a411 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q19.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q19.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q20.sh b/tests/queries/0_stateless/04033_tpc_ds_q20.sh index 776a60606697..27113f036114 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q20.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q20.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q21.sh b/tests/queries/0_stateless/04033_tpc_ds_q21.sh index 9d32b87bf919..a17f5e8ccf1d 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q21.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q21.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q22.sh b/tests/queries/0_stateless/04033_tpc_ds_q22.sh index ad8226cf25f4..71655fd55e94 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q22.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q22.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q23.sh b/tests/queries/0_stateless/04033_tpc_ds_q23.sh index b29295d7fcdb..f2d0729f4c2b 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q23.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q23.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q24.sh b/tests/queries/0_stateless/04033_tpc_ds_q24.sh index 7561508d32b6..47d0e4c501af 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q24.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q24.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q25.sh b/tests/queries/0_stateless/04033_tpc_ds_q25.sh index e3eec38b69aa..c2148b8cb74f 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q25.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q25.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q26.sh b/tests/queries/0_stateless/04033_tpc_ds_q26.sh index 2b89d6b18bb6..69b899976835 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q26.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q26.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q27.sh b/tests/queries/0_stateless/04033_tpc_ds_q27.sh index 363af9177908..8f0d0dcd205a 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q27.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q27.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q28.sh b/tests/queries/0_stateless/04033_tpc_ds_q28.sh index 0b65b29f9bf3..1a5007c3a0d1 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q28.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q28.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q29.sh b/tests/queries/0_stateless/04033_tpc_ds_q29.sh index 8a537a0bf924..ae3b4d8a81f7 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q29.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q29.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q30.sh b/tests/queries/0_stateless/04033_tpc_ds_q30.sh index 801343800b40..70256d286f64 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q30.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q30.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q31.sh b/tests/queries/0_stateless/04033_tpc_ds_q31.sh index 0a0b29732e7e..5cfbd2719d82 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q31.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q31.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q32.sh b/tests/queries/0_stateless/04033_tpc_ds_q32.sh index 1eec53050043..e54473afcbd1 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q32.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q32.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q33.sh b/tests/queries/0_stateless/04033_tpc_ds_q33.sh index 7e49a20daab3..105557370844 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q33.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q33.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q34.sh b/tests/queries/0_stateless/04033_tpc_ds_q34.sh index d2cedcc5143a..3b9980799f1f 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q34.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q34.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q35.sh b/tests/queries/0_stateless/04033_tpc_ds_q35.sh index 037d8fc942ea..59a864f74b5e 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q35.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q35.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. # Known issue: Memory Limit Exceeded with reasonable amount of memory. Enable the test once the issue is resolved or memory is optimised. echo "SKIP" diff --git a/tests/queries/0_stateless/04033_tpc_ds_q36.sh b/tests/queries/0_stateless/04033_tpc_ds_q36.sh index 7e9b0998d2f5..198c79e24d41 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q36.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q36.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q37.sh b/tests/queries/0_stateless/04033_tpc_ds_q37.sh index 21544aa311a8..fa88123dc692 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q37.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q37.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q38.sh b/tests/queries/0_stateless/04033_tpc_ds_q38.sh index b13041e7d9bf..7a970c1f6130 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q38.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q38.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q39.sh b/tests/queries/0_stateless/04033_tpc_ds_q39.sh index 5ccf1f3ec4d5..f56b83d40bb1 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q39.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q39.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q40.sh b/tests/queries/0_stateless/04033_tpc_ds_q40.sh index dffe9565b1ba..f74de6a03c2c 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q40.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q40.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q41.sh b/tests/queries/0_stateless/04033_tpc_ds_q41.sh index 435c3f20766a..c86189ac971e 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q41.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q41.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q42.sh b/tests/queries/0_stateless/04033_tpc_ds_q42.sh index da66c5c4d4a0..338b0f9b315e 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q42.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q42.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q43.sh b/tests/queries/0_stateless/04033_tpc_ds_q43.sh index 0bb3dd4e9c04..504c9c0514fe 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q43.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q43.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q44.sh b/tests/queries/0_stateless/04033_tpc_ds_q44.sh index 7a6c11e83848..cf4d72e00fdb 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q44.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q44.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q45.sh b/tests/queries/0_stateless/04033_tpc_ds_q45.sh index aa2c9b8a83dd..8243bbcec849 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q45.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q45.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q46.sh b/tests/queries/0_stateless/04033_tpc_ds_q46.sh index f7c0c660575d..da3ca3bd6c06 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q46.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q46.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q47.sh b/tests/queries/0_stateless/04033_tpc_ds_q47.sh index 459d93b138c6..5750c4340672 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q47.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q47.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. # Known issue: the original query doesn't work, uses alternative formulation (https://github.com/ClickHouse/ClickHouse/issues/94858). # Once the issue is fixed, switch to the original query from tests/benchmarks/tpc-ds/README.md. diff --git a/tests/queries/0_stateless/04033_tpc_ds_q48.sh b/tests/queries/0_stateless/04033_tpc_ds_q48.sh index bd242ecb880c..1a31fd67cb4b 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q48.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q48.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q49.sh b/tests/queries/0_stateless/04033_tpc_ds_q49.sh index 881757541b12..798108de2a24 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q49.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q49.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q50.sh b/tests/queries/0_stateless/04033_tpc_ds_q50.sh index a821da5e4f21..e51ec084ed15 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q50.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q50.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q51.sh b/tests/queries/0_stateless/04033_tpc_ds_q51.sh index fe3aa005a8c1..4eee97af3f5e 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q51.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q51.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q52.sh b/tests/queries/0_stateless/04033_tpc_ds_q52.sh index 4c6d42fc9275..3bac8b34379f 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q52.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q52.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q53.sh b/tests/queries/0_stateless/04033_tpc_ds_q53.sh index 1c9f9c63ff05..3226a931df78 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q53.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q53.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q54.sh b/tests/queries/0_stateless/04033_tpc_ds_q54.sh index 5d919976c6a4..379e5ca437d9 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q54.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q54.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q55.sh b/tests/queries/0_stateless/04033_tpc_ds_q55.sh index c8710177ea98..c43ce62bb739 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q55.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q55.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q56.sh b/tests/queries/0_stateless/04033_tpc_ds_q56.sh index cc7245b4525e..3594b98a42fd 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q56.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q56.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q57.sh b/tests/queries/0_stateless/04033_tpc_ds_q57.sh index 7f77ec88308a..c14c737d2301 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q57.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q57.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. # Known issue: the original query doesn't work, uses alternative formulation (https://github.com/ClickHouse/ClickHouse/issues/94858). # Once the issue is fixed, switch to the original query from tests/benchmarks/tpc-ds/README.md. diff --git a/tests/queries/0_stateless/04033_tpc_ds_q58.sh b/tests/queries/0_stateless/04033_tpc_ds_q58.sh index 7373a939b7fd..23b877653270 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q58.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q58.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. # Known issue: the original query doesn't work, uses alternative formulation (https://github.com/ClickHouse/ClickHouse/issues/94976). # Once the issue is fixed, switch to the original query from tests/benchmarks/tpc-ds/README.md. diff --git a/tests/queries/0_stateless/04033_tpc_ds_q59.sh b/tests/queries/0_stateless/04033_tpc_ds_q59.sh index 3ed77a0403e7..2bd3b5dfcfb1 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q59.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q59.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q60.sh b/tests/queries/0_stateless/04033_tpc_ds_q60.sh index cb08283b72ad..e3fefae8f8bd 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q60.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q60.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q61.sh b/tests/queries/0_stateless/04033_tpc_ds_q61.sh index 719b4f512796..14876358e56b 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q61.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q61.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q62.sh b/tests/queries/0_stateless/04033_tpc_ds_q62.sh index d95547ad35ba..fe45683594a0 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q62.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q62.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q63.sh b/tests/queries/0_stateless/04033_tpc_ds_q63.sh index 16c86f290f3a..6eeb5c8fa245 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q63.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q63.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q64.sh b/tests/queries/0_stateless/04033_tpc_ds_q64.sh index 039bedbee0ca..ec18fcd1358e 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q64.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q64.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q65.sh b/tests/queries/0_stateless/04033_tpc_ds_q65.sh index 705bdd5ad134..0df9628a351f 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q65.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q65.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q66.sh b/tests/queries/0_stateless/04033_tpc_ds_q66.sh index 73b59225306e..e6c3d55c40e1 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q66.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q66.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q67.sh b/tests/queries/0_stateless/04033_tpc_ds_q67.sh index ec323f2ec54b..8290dac2bb66 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q67.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q67.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q68.sh b/tests/queries/0_stateless/04033_tpc_ds_q68.sh index f887cc07b728..fdfb77f8e68a 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q68.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q68.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q69.sh b/tests/queries/0_stateless/04033_tpc_ds_q69.sh index df11486c2c4c..6f0e575b182a 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q69.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q69.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q70.sh b/tests/queries/0_stateless/04033_tpc_ds_q70.sh index 7ee063ecf3e3..8d16311110ca 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q70.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q70.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q71.sh b/tests/queries/0_stateless/04033_tpc_ds_q71.sh index 064b255f6042..e4ae49f4d6ce 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q71.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q71.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q72.sh b/tests/queries/0_stateless/04033_tpc_ds_q72.sh index 0865f2a1c64f..26f9b320561a 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q72.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q72.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q73.sh b/tests/queries/0_stateless/04033_tpc_ds_q73.sh index 9afbb4b7e50c..ce99e65e5e71 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q73.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q73.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q74.sh b/tests/queries/0_stateless/04033_tpc_ds_q74.sh index a76a50fe2e3a..4471aa6380b0 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q74.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q74.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q75.sh b/tests/queries/0_stateless/04033_tpc_ds_q75.sh index 94fb1a93db55..2220095feb8a 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q75.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q75.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. # Known issue: the original query doesn't work, uses alternative formulation (https://github.com/ClickHouse/ClickHouse/issues/106707). # Once the issue is fixed, switch to the original query from tests/benchmarks/tpc-ds/README.md. diff --git a/tests/queries/0_stateless/04033_tpc_ds_q76.sh b/tests/queries/0_stateless/04033_tpc_ds_q76.sh index 042946290df7..ad54c997ad2c 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q76.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q76.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q77.sh b/tests/queries/0_stateless/04033_tpc_ds_q77.sh index ad58111df440..ef0cb2a8bcef 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q77.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q77.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q78.sh b/tests/queries/0_stateless/04033_tpc_ds_q78.sh index 4b436adec419..6ae163133941 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q78.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q78.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q79.sh b/tests/queries/0_stateless/04033_tpc_ds_q79.sh index 09a7e7827e1b..add2029a978a 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q79.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q79.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q80.sh b/tests/queries/0_stateless/04033_tpc_ds_q80.sh index bfa78a9302aa..2943e17f01b0 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q80.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q80.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q81.sh b/tests/queries/0_stateless/04033_tpc_ds_q81.sh index e659bdad0875..be623bcdda26 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q81.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q81.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q82.sh b/tests/queries/0_stateless/04033_tpc_ds_q82.sh index a53903abcd8e..1f0baa8acae0 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q82.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q82.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q83.sh b/tests/queries/0_stateless/04033_tpc_ds_q83.sh index 35bfb62c65cd..b820db6f8714 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q83.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q83.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q84.sh b/tests/queries/0_stateless/04033_tpc_ds_q84.sh index 560592913297..4cd76ed37784 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q84.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q84.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q85.sh b/tests/queries/0_stateless/04033_tpc_ds_q85.sh index 70ca7d9f441d..9df9455a6d62 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q85.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q85.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q86.sh b/tests/queries/0_stateless/04033_tpc_ds_q86.sh index 7070a533ba11..4d6b17eedc99 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q86.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q86.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q87.sh b/tests/queries/0_stateless/04033_tpc_ds_q87.sh index 16454015c9dc..9b9bd2aacc49 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q87.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q87.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q88.sh b/tests/queries/0_stateless/04033_tpc_ds_q88.sh index 27000c0f0b3a..41200a449b3d 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q88.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q88.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q89.sh b/tests/queries/0_stateless/04033_tpc_ds_q89.sh index f6ffacb9246f..bed9b93d2bcb 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q89.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q89.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q90.sh b/tests/queries/0_stateless/04033_tpc_ds_q90.sh index ffc28887d626..a7787b9e104c 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q90.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q90.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q91.sh b/tests/queries/0_stateless/04033_tpc_ds_q91.sh index 0523d7d79e47..985d4c0cc628 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q91.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q91.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q92.sh b/tests/queries/0_stateless/04033_tpc_ds_q92.sh index 4344b7555edc..ede647e0cf28 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q92.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q92.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q93.sh b/tests/queries/0_stateless/04033_tpc_ds_q93.sh index 149f8035582e..427af7f49478 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q93.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q93.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q94.sh b/tests/queries/0_stateless/04033_tpc_ds_q94.sh index 29a9c176315d..54d4e5958164 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q94.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q94.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q95.sh b/tests/queries/0_stateless/04033_tpc_ds_q95.sh index aa9a91c2afe5..cfede37fae10 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q95.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q95.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q96.sh b/tests/queries/0_stateless/04033_tpc_ds_q96.sh index 6f4368f346b0..bd3395c672bf 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q96.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q96.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q97.sh b/tests/queries/0_stateless/04033_tpc_ds_q97.sh index 1de93ff77813..f953c84de6f2 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q97.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q97.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q98.sh b/tests/queries/0_stateless/04033_tpc_ds_q98.sh index 46e6c12a1056..625fd91b2dab 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q98.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q98.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh diff --git a/tests/queries/0_stateless/04033_tpc_ds_q99.sh b/tests/queries/0_stateless/04033_tpc_ds_q99.sh index 3ca1cf0c23ff..a52d25ea431d 100755 --- a/tests/queries/0_stateless/04033_tpc_ds_q99.sh +++ b/tests/queries/0_stateless/04033_tpc_ds_q99.sh @@ -1,10 +1,9 @@ #!/usr/bin/env bash -# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check, no-parallel +# Tags: no-fasttest, no-random-settings, no-replicated-database, no-flaky-check # no-fasttest: TPC-DS tables use web disk (S3) which is not available in fasttest. # no-random-settings: random session_timezone, query_plan_join_swap_table, etc. change query results. # no-replicated-database: the `tpcds` database is not created in DatabaseReplicated mode. # no-flaky-check: TPC-DS queries are too expensive for thread fuzzer. -# no-parallel: heavy queries contend on the shared server under parallel FT jobs. CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh