summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/blob-update-debug.result
blob: 813a469dd2bf3e9542bbe263cb25ef83ac3b4b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# Bug#18185930 UPD_NODE_INSERT_BLOB CAUSES BTR_EXTERN_OWNER_FLAG
# ASSERTION
#
create table t1 (f1 int primary key, f2 blob) engine = innodb;
insert into t1 values (1, repeat('*', 50000));
select f1, substring(f2, 1, 40) from t1;
f1	substring(f2, 1, 40)
1	****************************************
set @saved_debug = @@session.debug_dbug;
SET debug_dbug = 'd,row_ins_index_entry_timeout';
update t1 set f1 = 3;
select f1, substring(f2, 1, 40) from t1;
f1	substring(f2, 1, 40)
3	****************************************
drop table t1;
SET debug_dbug= @saved_debug;