Merge pull request #67980 from ClickHouse/vdimir/fix_03130_convert_outer_join_to_inner_join

Fix 03130_convert_outer_join_to_inner_join
This commit is contained in:
vdimir 2024-08-12 11:34:10 +00:00 committed by GitHub
commit 52f37f2ec6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,14 +6,18 @@ CREATE TABLE test_table_1
(
id UInt64,
value String
) ENGINE=MergeTree ORDER BY id;
) ENGINE=MergeTree ORDER BY id
SETTINGS index_granularity = 16 # We have number of granules in the `EXPLAIN` output in reference file
;
DROP TABLE IF EXISTS test_table_2;
CREATE TABLE test_table_2
(
id UInt64,
value String
) ENGINE=MergeTree ORDER BY id;
) ENGINE=MergeTree ORDER BY id
SETTINGS index_granularity = 16
;
INSERT INTO test_table_1 VALUES (1, 'Value_1'), (2, 'Value_2');
INSERT INTO test_table_2 VALUES (2, 'Value_2'), (3, 'Value_3');