Skip to content

Commit

Permalink
Add test for PR #40335
Browse files Browse the repository at this point in the history
  • Loading branch information
vdimir committed Aug 24, 2022
1 parent 635cc76 commit 52604e0
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/queries/0_stateless/02405_pmj_issue_40335.reference
@@ -0,0 +1,5 @@
a
b
c
d
e
15 changes: 15 additions & 0 deletions tests/queries/0_stateless/02405_pmj_issue_40335.sql
@@ -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;

0 comments on commit 52604e0

Please sign in to comment.