mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
43 lines
894 B
SQL
43 lines
894 B
SQL
SET any_join_distinct_right_table_keys = 1;
|
|
|
|
drop table IF EXISTS joinbug;
|
|
|
|
CREATE TABLE joinbug (
|
|
event_date Date MATERIALIZED toDate(created, 'Europe/Moscow'),
|
|
id UInt64,
|
|
id2 UInt64,
|
|
val UInt64,
|
|
val2 Int32,
|
|
created UInt64
|
|
) ENGINE = MergeTree(event_date, (id, id2), 8192);
|
|
|
|
insert into joinbug (id, id2, val, val2, created) values (1,11,91,81,123456), (2,22,92,82,123457);
|
|
|
|
drop table IF EXISTS joinbug_join;
|
|
|
|
CREATE TABLE joinbug_join (
|
|
id UInt64,
|
|
id2 UInt64,
|
|
val UInt64,
|
|
val2 Int32,
|
|
created UInt64
|
|
) ENGINE = Join(ANY, INNER, id2);
|
|
|
|
insert into joinbug_join (id, id2, val, val2, created)
|
|
select id, id2, val, val2, created
|
|
from joinbug;
|
|
|
|
/* expected */
|
|
select *
|
|
from joinbug;
|
|
|
|
/* wtf */
|
|
select id, id2, val, val2, created
|
|
from (
|
|
SELECT toUInt64(arrayJoin(range(50))) AS id2
|
|
) js1
|
|
ANY INNER JOIN joinbug_join using id2;
|
|
|
|
DROP TABLE joinbug;
|
|
DROP TABLE joinbug_join;
|