summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/innodb-replace-debug.result
blob: 989fb055cbc32b5fc84447d93a3e887058822324 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# Bug#17604730 ASSERTION: *CURSOR->INDEX->NAME == TEMP_INDEX_PREFIX
#
create table t1 (f1 int primary key, f2 int, f3 int, unique key k1(f2),
key k2(f3)) engine=innodb;
insert into t1 values (14, 24, 34);
set @old_dbug= @@session.debug_dbug;
set debug_dbug = '+d,row_ins_sec_index_entry_timeout';
replace into t1 values (14, 25, 34);
select * from t1;
f1	f2	f3
14	25	34
drop table t1;
set debug_dbug = @old_dbug;