ClickHouse/tests/queries/0_stateless/01383_remote_ambiguous_column_shard.sql

14 lines
676 B
MySQL
Raw Normal View History

2021-09-12 12:35:27 +00:00
-- Tags: shard, no-parallel
DROP DATABASE IF EXISTS test_01383;
CREATE DATABASE test_01383;
2020-07-10 18:50:01 +00:00
create table test_01383.fact (id1 Int64, id2 Int64, value Int64) ENGINE = MergeTree() ORDER BY id1;
create table test_01383.dimension (id1 Int64, name String) ENGINE = MergeTree() ORDER BY id1;
insert into test_01383.fact values (1,2,10),(2,2,10),(3,3,10),(4,3,10);
insert into test_01383.dimension values (1,'name_1'),(2,'name_1'),(3,'name_3'),(4, 'name_4');
2020-07-10 18:50:01 +00:00
SELECT f.id1 AS ID, d.name AS Name, sum(f.value) FROM remote('127.0.0.{1,2,3}', test_01383.fact) AS f LEFT JOIN test_01383.dimension AS d ON f.id1 = d.id1 WHERE f.id1 = f.id2 GROUP BY ID, Name;
2020-07-10 18:50:01 +00:00
DROP DATABASE test_01383;