Update 01270_optimize_skip_unused_shards_low_cardinality.sql

This commit is contained in:
alexey-milovidov 2020-05-02 22:14:20 +03:00 committed by GitHub
parent 63d8ab8f03
commit ea7038b1b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,3 +8,6 @@ drop table if exists dist_01270;
create table data_01270 (key LowCardinality(Int)) Engine=Null();
create table dist_01270 as data_01270 Engine=Distributed(test_cluster_two_shards, currentDatabase(), data_01270, key);
select * from dist_01270 where key = 1;
drop table data_01270;
drop table dist_01270;