~ubuntu-branches/ubuntu/trusty/percona-xtradb-cluster-5.5/trusty-proposed

« back to all changes in this revision

Viewing changes to mysql-test/suite/innodb/t/blob-update-debug.test

  • Committer: Package Import Robot
  • Author(s): Rafael David Tinoco
  • Date: 2016-07-16 20:24:11 UTC
  • mfrom: (5.1.1 trusty-security)
  • Revision ID: package-import@ubuntu.com-20160716202411-wqt0uhix3mzbyhr6
Tags: 5.5.37-25.10+dfsg-0ubuntu0.14.04.2
d/p/fix_tc_log_initlization_on_ppc64.patch: Fix log-tc-size for bigger
page sizes to fix crash on ppc64el (LP: #1570678)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This file contains tests involving update operations on blob data type.
 
2
 
 
3
--source include/have_innodb.inc
 
4
--source include/have_debug.inc
 
5
 
 
6
--echo #
 
7
--echo # Bug#18185930 UPD_NODE_INSERT_BLOB CAUSES BTR_EXTERN_OWNER_FLAG
 
8
--echo # ASSERTION
 
9
--echo #
 
10
 
 
11
create table t1 (f1 int primary key, f2 blob) engine = innodb;
 
12
insert into t1 values (1, repeat('*', 50000));
 
13
select f1, substring(f2, 1, 40) from t1;
 
14
set debug = 'd,row_ins_index_entry_timeout';
 
15
update t1 set f1 = 3;
 
16
select f1, substring(f2, 1, 40) from t1;
 
17
drop table t1;