mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
Add test for PR #40335
This commit is contained in:
parent
635cc7617e
commit
52604e0168
@ -0,0 +1,5 @@
|
||||
a
|
||||
b
|
||||
c
|
||||
d
|
||||
e
|
15
tests/queries/0_stateless/02405_pmj_issue_40335.sql
Normal file
15
tests/queries/0_stateless/02405_pmj_issue_40335.sql
Normal file
@ -0,0 +1,15 @@
|
||||
DROP TABLE IF EXISTS t1;
|
||||
DROP TABLE IF EXISTS t2;
|
||||
|
||||
CREATE TABLE t1 (x UInt64) ENGINE = TinyLog;
|
||||
INSERT INTO t1 VALUES (1), (2), (3);
|
||||
|
||||
CREATE TABLE t2 (x UInt64, value String) ENGINE = TinyLog;
|
||||
INSERT INTO t2 VALUES (1, 'a'), (2, 'b'), (2, 'c');
|
||||
INSERT INTO t2 VALUES (3, 'd'), (3, 'e'), (4, 'f');
|
||||
|
||||
SET max_block_size=3;
|
||||
SET max_joined_block_size_rows = 2;
|
||||
SET join_algorithm='partial_merge';
|
||||
|
||||
SELECT value FROM t1 LEFT JOIN t2 ON t1.x = t2.x;
|
Loading…
Reference in New Issue
Block a user