blob: c5a3375f33c33333035c324872efa9d5378faf17 (
plain)
1
2
3
4
5
6
|
create table t1 (a int, b int);
set debug_dbug='+d,external_lock_failure';
alter table t1 add column c int;
ERROR HY000: Got error 168 'KABOOM!' from MyISAM
set debug_dbug='';
drop table t1;
|