Reduce test

This commit is contained in:
Igor Nikonov 2024-12-10 19:17:25 +00:00
parent af13166972
commit 2c4a0dd4c1
2 changed files with 1 additions and 37020 deletions

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,6 @@ CREATE TABLE test_table_join_1
id UInt8,
value String
) ENGINE = ReplicatedMergeTree('/clickhouse/{database}/test_table_join_1', 'r1') ORDER BY id SETTINGS index_granularity=1;
--SYSTEM STOP MERGES test_table_join_1;
DROP TABLE IF EXISTS test_table_join_2 SYNC;
CREATE TABLE test_table_join_2
@ -16,7 +15,6 @@ CREATE TABLE test_table_join_2
id UInt16,
value String
) ENGINE = ReplicatedMergeTree('/clickhouse/{database}/test_table_join_2', 'r1') ORDER BY id SETTINGS index_granularity=1;
--SYSTEM STOP MERGES test_table_join_2;
DROP TABLE IF EXISTS test_table_join_3 SYNC;
CREATE TABLE test_table_join_3
@ -24,7 +22,6 @@ CREATE TABLE test_table_join_3
id UInt64,
value String
) ENGINE = ReplicatedMergeTree('/clickhouse/{database}/test_table_join_3', 'r1') ORDER BY id SETTINGS index_granularity=1;
--SYSTEM STOP MERGES test_table_join_3;
INSERT INTO test_table_join_1 SELECT number, concat('t1_value_', number) from numbers(500);
INSERT INTO test_table_join_1 SELECT number, concat('t1_value_', number) from numbers(500, 400);
@ -38,7 +35,7 @@ INSERT INTO test_table_join_3 SELECT number, concat('t3_value_', number) from nu
-- { echoOn }
{% for parallel_replicas_local_plan in ['0', '1'] -%}
{% for first_join_type in ['INNER', 'LEFT', 'RIGHT', 'FULL'] -%}
{% for first_join_type in ['INNER'] -%}
{% for second_join_type in ['INNER', 'LEFT', 'RIGHT', 'FULL'] -%}
SELECT 'First JOIN {{ first_join_type }} second JOIN {{ second_join_type }}';