mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
60343871a7
remove ~15 years old print_lock_error() function, use handler::print_error() instead Backport from 10.1
6 lines
191 B
Text
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;
|