2009-12-15 10:16:46 +03:00
|
|
|
# test for BUG#36981 "innodb crash when selecting for update"
|
|
|
|
|
|
|
|
--source include/have_debug.inc
|
|
|
|
--source include/have_innodb.inc
|
|
|
|
|
|
|
|
# crash requires this
|
2020-01-09 13:38:48 +01:00
|
|
|
SET @saved_dbug = @@SESSION.debug_dbug;
|
2011-12-15 22:07:58 +01:00
|
|
|
set session debug_dbug="+d,optimizer_innodb_icp";
|
2009-12-15 10:16:46 +03:00
|
|
|
|
|
|
|
create table `t1` (`c1` char(1) default null,`c2` char(10) default null,
|
|
|
|
key (`c1`))
|
|
|
|
engine=innodb default charset=latin1;
|
|
|
|
insert into `t1` values ('3',null);
|
|
|
|
select * from `t1` where `c1`='3' for update;
|
|
|
|
drop table `t1`;
|
2020-01-09 13:38:48 +01:00
|
|
|
SET debug_dbug= @saved_dbug;
|