EVOLUTION-MANAGER
Edit File: hotindex-insert-2.result
SET DEFAULT_STORAGE_ENGINE='tokudb'; # Establish connection conn1 (user = root) connect conn1,localhost,root,,; connection default; drop table if exists s; create table s (a int auto_increment, b int, c int, primary key (a)); # populate table s # done inserting elements set tokudb_create_index_online=1; create index i_a on s(c); connection conn1; # starting insert while create index is happening # done with insert connection default; select count(*) from s use index(primary); count(*) 100000 select count(*) from s use index(i_a); count(*) 100000 disconnect conn1; drop table s;