1# 2# Bug#18185930 UPD_NODE_INSERT_BLOB CAUSES BTR_EXTERN_OWNER_FLAG 3# ASSERTION 4# 5create table t1 (f1 int primary key, f2 blob) engine = innodb; 6insert into t1 values (1, repeat('*', 50000)); 7select f1, substring(f2, 1, 40) from t1; 8f1 substring(f2, 1, 40) 91 **************************************** 10set @saved_debug = @@session.debug_dbug; 11SET debug_dbug = 'd,row_ins_index_entry_timeout'; 12update t1 set f1 = 3; 13select f1, substring(f2, 1, 40) from t1; 14f1 substring(f2, 1, 40) 153 **************************************** 16drop table t1; 17SET debug_dbug= @saved_debug; 18