diff --git a/tests/queries/0_stateless/02721_url_cluster.sql b/tests/queries/0_stateless/02721_url_cluster.sql index 5d089c16f5d..ea387b06dc3 100644 --- a/tests/queries/0_stateless/02721_url_cluster.sql +++ b/tests/queries/0_stateless/02721_url_cluster.sql @@ -1,7 +1,6 @@ -- Tags: no-fasttest -- Tag no-fasttest: Depends on AWS - select * from urlCluster('test_cluster_two_shards_localhost', 'http://localhost:11111/test/{a,b,c}.tsv') ORDER BY c1, c2, c3; select * from urlCluster('test_cluster_two_shards_localhost', 'http://localhost:11111/test/{a,b,c}.tsv', 'TSV') ORDER BY c1, c2, c3; select * from urlCluster('test_cluster_two_shards_localhost', 'http://localhost:11111/test/{a,b,c}.tsv', 'TSV', 'c1 UInt64, c2 UInt64, c3 UInt64') ORDER BY c1, c2, c3; @@ -29,7 +28,7 @@ select * from urlCluster('test_cluster_one_shard_three_replicas_localhost', 'htt drop table if exists test; create table test (x UInt32, y UInt32, z UInt32) engine=Memory(); -insert into test select * from urlCluster('test_cluster_one_shard_three_replicas_localhost', 'http://localhost:11111/test/a.tsv'); +insert into test select * from s3Cluster('test_cluster_one_shard_three_replicas_localhost', 'http://localhost:11111/test/a.tsv', 'TSV'); select * from test; drop table test;