mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 03:22:14 +00:00
Fix 03130_convert_outer_join_to_inner_join
This commit is contained in:
parent
681eafef79
commit
6afff5824e
@ -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');
|
||||
|
Loading…
Reference in New Issue
Block a user