mariadb/mysql-test/main/engine_error_in_alter-8453.result
2018-03-29 13:59:44 +03:00

6 lines
191 B
Text

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;