ClickHouse/tests/queries/0_stateless/01901_in_literal_shard_prune.sql
2021-06-04 21:16:15 +08:00

16 lines
374 B
SQL

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;