mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
This commit is contained in:
parent
9193762280
commit
936d10f97d
@ -0,0 +1,2 @@
|
||||
1 10 1 1
|
||||
2 12 2 2
|
28
tests/queries/0_stateless/03123_analyzer_dist_join_CTE.sql
Normal file
28
tests/queries/0_stateless/03123_analyzer_dist_join_CTE.sql
Normal file
@ -0,0 +1,28 @@
|
||||
-- https://github.com/ClickHouse/ClickHouse/issues/22923
|
||||
SET allow_experimental_analyzer=1;
|
||||
SET prefer_localhost_replica=0;
|
||||
|
||||
create table "t0" (a Int64, b Int64) engine = MergeTree() partition by a order by a;
|
||||
|
||||
create table "dist_t0" (a Int64, b Int64) engine = Distributed(test_shard_localhost, currentDatabase(), t0);
|
||||
|
||||
insert into t0 values (1, 10), (2, 12);
|
||||
|
||||
SELECT * FROM (
|
||||
WITH
|
||||
b AS
|
||||
(
|
||||
SELECT toInt64(number) AS a
|
||||
FROM numbers(10)
|
||||
),
|
||||
c AS
|
||||
(
|
||||
SELECT toInt64(number) AS a
|
||||
FROM numbers(10)
|
||||
)
|
||||
SELECT *
|
||||
FROM dist_t0 AS a
|
||||
LEFT JOIN b AS b ON a.a = b.a
|
||||
LEFT JOIN c AS c ON a.a = c.a
|
||||
)
|
||||
ORDER BY ALL;
|
Loading…
Reference in New Issue
Block a user