ClickHouse/tests/queries/0_stateless/00561_storage_join.sql
Ivan 97f2a2213e
Move all folders inside /dbms one level up (#9974)
* Move some code outside dbms/src folder
* Fix paths
2020-04-02 02:51:21 +03:00

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;