summaryrefslogtreecommitdiff
path: root/mysql-test/r/bench_count_distinct.result
blob: d414e8e466ee0bcd1ca84c7506a3af13c87447d0 (plain)
1
2
3
4
5
6
drop table if exists t1;
create table t1(n int not null, key(n)) delay_key_write = 1;
select count(distinct n) from t1;
count(distinct n)
100
drop table t1;