blob: f97eb60e0f86854317c4872bac7195687278b75f [file]
-- distinct on top of count(distinct ...)
-- drill-2190
select
distinct count(distinct a1)
from
t1
group by
c1
order by
1;