Skip to content

Commit f7213de

Browse files
committed
mark with no-parallel-replicas tag
1 parent 09007d4 commit f7213de

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/queries/0_stateless/02789_reading_from_s3_with_connection_pool.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/usr/bin/env bash
2-
# Tags: no-fasttest, no-random-settings, no-replicated-database, no-distributed-cache
2+
# Tags: no-fasttest, no-random-settings, no-replicated-database, no-distributed-cache, no-parallel-replicas
3+
4+
# no-fasttest -- test uses s3_dick
5+
# no-parallel-replicas -- do not run url functions as StorageURLCluster
36

47
CUR_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
58
# shellcheck source=../shell_config.sh
@@ -12,7 +15,7 @@ CREATE TABLE test_s3 (a UInt64, b UInt64)
1215
ENGINE = MergeTree ORDER BY a
1316
SETTINGS disk = 's3_disk', min_bytes_for_wide_part = 0;
1417
15-
INSERT INTO test_s3 SELECT number, number FROM numbers_mt(1e7);
18+
INSERT INTO test_s3 SELECT number, number FROM numbers_mt(1);
1619
"
1720

1821
# This (reusing connections from the pool) is not guaranteed to always happen,
@@ -53,7 +56,6 @@ do
5356
'http://localhost:8123/?query=' || encodeURLComponent('select 1'),
5457
'LineAsString',
5558
's String')
56-
-- queryID() will be returned for each row, since the query above doesn't return anything we need to return a fake row
5759
) LIMIT 1 SETTINGS max_threads=1, http_make_head_request=0;
5860
")
5961

0 commit comments

Comments
 (0)