mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
60 lines
1.8 KiB
SQL
60 lines
1.8 KiB
SQL
CREATE DATABASE IF NOT EXISTS test_00857;
|
|
USE test_00857;
|
|
DROP TABLE IF EXISTS local_table;
|
|
DROP TABLE IF EXISTS other_table;
|
|
|
|
CREATE TABLE local_table
|
|
(
|
|
id Int32,
|
|
name String,
|
|
ts DateTime,
|
|
oth_id Int32
|
|
) ENGINE = MergeTree() PARTITION BY toMonday(ts) ORDER BY (ts, id);
|
|
|
|
CREATE TABLE other_table
|
|
(
|
|
id Int32,
|
|
name String,
|
|
ts DateTime,
|
|
trd_id Int32
|
|
) ENGINE = MergeTree() PARTITION BY toMonday(ts) ORDER BY (ts, id);
|
|
|
|
INSERT INTO local_table VALUES(1, 'One', now(), 100);
|
|
INSERT INTO local_table VALUES(2, 'Two', now(), 200);
|
|
INSERT INTO other_table VALUES(100, 'One Hundred', now(), 1000);
|
|
INSERT INTO other_table VALUES(200, 'Two Hundred', now(), 2000);
|
|
|
|
select t2.name from remote('127.0.0.2', currentDatabase(), 'local_table') as t1
|
|
left join test_00857.other_table as t2 -- FIXME: doesn't work properly on remote without explicit database prefix
|
|
on t1.oth_id = t2.id
|
|
order by t2.name;
|
|
|
|
select t2.name from other_table as t2
|
|
global right join remote('127.0.0.2', currentDatabase(), 'local_table') as t1
|
|
on t1.oth_id = t2.id
|
|
order by t2.name;
|
|
|
|
select t2.name from remote('127.0.0.2', currentDatabase(), 'local_table') as t1
|
|
global left join other_table as t2
|
|
on t1.oth_id = t2.id
|
|
order by t2.name;
|
|
|
|
select t2.name from remote('127.0.0.2', currentDatabase(), 'local_table') as t1
|
|
global left join other_table as t2
|
|
on t1.oth_id = t2.id
|
|
order by t2.name;
|
|
|
|
select other_table.name from remote('127.0.0.2', currentDatabase(), 'local_table') as t1
|
|
global left join other_table
|
|
on t1.oth_id = other_table.id
|
|
order by other_table.name;
|
|
|
|
select other_table.name from remote('127.0.0.2', currentDatabase(), 'local_table') as t1
|
|
global left join other_table as t2
|
|
on t1.oth_id = other_table.id
|
|
order by other_table.name;
|
|
|
|
DROP TABLE local_table;
|
|
DROP TABLE other_table;
|
|
DROP DATABASE test_00857;
|