mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
7 lines
241 B
Text
7 lines
241 B
Text
create table t1 (a int, b int);
|
|
SET @saved_dbug = @@SESSION.debug_dbug;
|
|
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= @saved_dbug;
|
|
drop table t1;
|