Skip to content

Commit

Permalink
Close: #22923
Browse files Browse the repository at this point in the history
  • Loading branch information
fm4v committed Apr 11, 2024
1 parent 9193762 commit 936d10f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
1 10 1 1
2 12 2 2
28 changes: 28 additions & 0 deletions tests/queries/0_stateless/03123_analyzer_dist_join_CTE.sql
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 936d10f

Please sign in to comment.