Fix 03130_convert_outer_join_to_inner_join

This commit is contained in:
vdimir 2024-08-07 12:14:05 +00:00
parent 681eafef79
commit 6afff5824e
No known key found for this signature in database
GPG Key ID: 6EE4CE2BEDC51862

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');