summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/parts/r/truncate_locked.result
blob: 54a3722938e97daa8e60744af829c54d26c26e20 (plain)
1
2
3
4
5
6
7
create table t1 (i int) engine=myisam partition by hash(i) partitions 2 ;
lock table t1 write;
truncate table t1;
desc t1;
Field	Type	Null	Key	Default	Extra
i	int(11)	YES		NULL	
drop table t1;