Add test for PR #40335

This commit is contained in:
vdimir 2022-08-24 14:09:19 +00:00
parent 635cc7617e
commit 52604e0168
No known key found for this signature in database
GPG Key ID: 6EE4CE2BEDC51862
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,5 @@
a
b
c
d
e

View 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;