mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
18 lines
390 B
SQL
18 lines
390 B
SQL
-- Tags: shard
|
|
|
|
set optimize_skip_unused_shards=1;
|
|
set force_optimize_skip_unused_shards=1;
|
|
|
|
drop table if exists d;
|
|
drop table if exists dp;
|
|
|
|
create table d (i UInt8) Engine=Memory;
|
|
create table dp as d Engine=Distributed(test_cluster_two_shards, currentDatabase(), d, i);
|
|
|
|
insert into d values (1), (2);
|
|
|
|
select * from dp where i in (1);
|
|
|
|
drop table if exists d;
|
|
drop table if exists dp;
|