mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Added 03261_pr_semi_anti_join
This commit is contained in:
parent
ed2da98474
commit
2530fd233f
16
tests/queries/0_stateless/03261_pr_semi_anti_join.reference
Normal file
16
tests/queries/0_stateless/03261_pr_semi_anti_join.reference
Normal file
@ -0,0 +1,16 @@
|
||||
semi left
|
||||
2 a3 2 b1
|
||||
2 a6 2 b1
|
||||
4 a5 4 b3
|
||||
semi right
|
||||
2 a3 2 b1
|
||||
2 a3 2 b2
|
||||
4 a5 4 b3
|
||||
4 a5 4 b4
|
||||
4 a5 4 b5
|
||||
anti left
|
||||
0 a1 0
|
||||
1 a2 1
|
||||
3 a4 3
|
||||
anti right
|
||||
0 5 b6
|
27
tests/queries/0_stateless/03261_pr_semi_anti_join.sql
Normal file
27
tests/queries/0_stateless/03261_pr_semi_anti_join.sql
Normal file
@ -0,0 +1,27 @@
|
||||
DROP TABLE IF EXISTS t1 SYNC;
|
||||
DROP TABLE IF EXISTS t2 SYNC;
|
||||
create table X (id Int32, x_a String, x_b Nullable(Int32)) engine ReplicatedMergeTree('/clickhouse/{database}/X', '1') order by tuple();
|
||||
|
||||
CREATE TABLE t1 (x UInt32, s String) engine ReplicatedMergeTree('/clickhouse/{database}/t1', '1') order by tuple();
|
||||
CREATE TABLE t2 (x UInt32, s String) engine ReplicatedMergeTree('/clickhouse/{database}/t2', '1') order by tuple();
|
||||
|
||||
INSERT INTO t1 (x, s) VALUES (0, 'a1'), (1, 'a2'), (2, 'a3'), (3, 'a4'), (4, 'a5'), (2, 'a6');
|
||||
INSERT INTO t2 (x, s) VALUES (2, 'b1'), (2, 'b2'), (4, 'b3'), (4, 'b4'), (4, 'b5'), (5, 'b6');
|
||||
|
||||
SET join_use_nulls = 0;
|
||||
set enable_analyzer = 1, enable_parallel_replicas = 1, max_parallel_replicas = 3, cluster_for_parallel_replicas = 'test_cluster_one_shard_three_replicas_localhost';
|
||||
|
||||
SELECT 'semi left';
|
||||
SELECT t1.*, t2.* FROM t1 SEMI LEFT JOIN t2 USING(x) ORDER BY t1.x, t2.x, t1.s, t2.s;
|
||||
|
||||
SELECT 'semi right';
|
||||
SELECT t1.*, t2.* FROM t1 SEMI RIGHT JOIN t2 USING(x) ORDER BY t1.x, t2.x, t1.s, t2.s;
|
||||
|
||||
SELECT 'anti left';
|
||||
SELECT t1.*, t2.* FROM t1 ANTI LEFT JOIN t2 USING(x) ORDER BY t1.x, t2.x, t1.s, t2.s;
|
||||
|
||||
SELECT 'anti right';
|
||||
SELECT t1.*, t2.* FROM t1 ANTI RIGHT JOIN t2 USING(x) ORDER BY t1.x, t2.x, t1.s, t2.s;
|
||||
|
||||
DROP TABLE t1 SYNC;
|
||||
DROP TABLE t2 SYNC;
|
Loading…
Reference in New Issue
Block a user