Nikita Fomichev 2024-04-12 00:22:18 +02:00
parent 9193762280
commit 936d10f97d
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,2 @@
1 10 1 1
2 12 2 2

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