summaryrefslogtreecommitdiff
path: root/mysql-test/suite/binlog/r/binlog_tmp_table_row.result
blob: 71bd75d89cb73c4bf356aac17a42b8ac324e3e23 (plain)
1
2
3
4
5
6
7
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;