Cleaner test

This commit is contained in:
Konstantin Bogdanov 2024-11-20 16:21:13 +01:00
parent b47a95bd4f
commit 07821a576d
No known key found for this signature in database
2 changed files with 16 additions and 10 deletions

View File

@ -0,0 +1,8 @@
Expression (Project names)
ReadFromCluster
Expression (Project names)
ReadFromCluster
Expression ((Project names + (Projection + Change column names to column identifiers)))
ReadFromURL
Expression ((Project names + (Projection + Change column names to column identifiers)))
S3Source

View File

@ -1,16 +1,14 @@
-- Tags: no-fasttest -- Tags: no-fasttest
-- Tag no-fasttest: Depends on AWS -- Tag no-fasttest: Depends on AWS
SET enable_parallel_replicas=1, max_parallel_replicas=3, parallel_replicas_for_non_replicated_merge_tree=1, cluster_for_parallel_replicas='test_cluster_two_shard_three_replicas_localhost'; SET enable_parallel_replicas=1;
SELECT * FROM s3('http://localhost:11111/test/{a,b,c}.tsv', 'test', 'testtest', '', 'TSV', 'c1 UInt64, c2 UInt64, c3 UInt64', 'auto') ORDER BY c1, c2, c3 SETTINGS log_comment='03275_16cb4bb2-813a-43c2-8956-fa3520454020_parallel_replicas'; SET cluster_for_parallel_replicas='default';
SET parallel_replicas_for_cluster_engines=true;
SET enable_parallel_replicas=0; EXPLAIN SELECT * FROM url('http://localhost:8123');
SELECT * FROM s3('http://localhost:11111/test/{a,b,c}.tsv', 'test', 'testtest', '', 'TSV', 'c1 UInt64, c2 UInt64, c3 UInt64', 'auto') ORDER BY c1, c2, c3 SETTINGS log_comment='03275_16cb4bb2-813a-43c2-8956-fa3520454020_single_replica'; EXPLAIN SELECT * FROM s3('http://localhost:11111/test/a.tsv', 'TSV');
SYSTEM FLUSH LOGS; SET parallel_replicas_for_cluster_engines=false;
SET enable_parallel_replicas=0; EXPLAIN SELECT * FROM url('http://localhost:8123');
SET max_rows_to_read = 0; -- system.text_log can be really big EXPLAIN SELECT * FROM s3('http://localhost:11111/test/a.tsv', 'TSV');
SELECT count() > 0 FROM system.text_log
WHERE query_id in (select query_id from system.query_log where current_database = currentDatabase() and log_comment like '03275_16cb4bb2-813a-43c2-8956-fa3520454020%')
AND message LIKE '%Parallel reading from replicas is disabled for cluster%';