EVOLUTION-MANAGER
Edit File: binlog_tmp_table_row.result
RESET MASTER; #Create table test create temporary table t1(a int, b int); #Add index test create index index_a on t1(a); #drop index test drop index index_a on t1;