EVOLUTION-MANAGER
Edit File: cluster_1829.test
--source include/have_tokudb.inc SET DEFAULT_STORAGE_ENGINE='tokudb'; # # Bug #22169: Crash with count(distinct) # --echo *** Bug #22169 *** --disable_warnings DROP TABLE IF EXISTS z1; --enable_warnings create table z1 (a int, b int, c int, d int, e int, key (a) clustering=yes); insert into z1 values (1,1,1,1,1),(7,7,7,7,7),(4,4,4,4,4),(3,3,3,3,3),(5,5,5,5,5),(2,2,2,2,2),(6,6,6,6,6); explain select * From z1 order by a; select * from z1 order by a; explain select * From z1 order by a desc; select * from z1 order by a desc; DROP TABLE z1;