1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
#
# Bug #27624990 ASSERTION `FALSE' FAILED AT BOOL WRAPPER_TO_STRING() IN SQL/JSON_DOM.CC
#
#
# Scenario 1: The row format is DYNAMIC (no blob prefix). The READ
# UNCOMMITTED transaction will see the new value of column f1 but
# old value of column f2.
#
create table t1 (f1 int, f2 longblob) row_format=dynamic;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`f1` int DEFAULT NULL,
`f2` longblob
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC
insert into t1 values (1, repeat('x', 40000));
SET DEBUG_SYNC = 'blob_write_middle SIGNAL do_select WAIT_FOR continue_insert';
update t1 set f1 = 2, f2 = repeat('y', 100000) where f1 = 1;;
SET DEBUG_SYNC = 'now WAIT_FOR do_select';
SET SESSION transaction_isolation = 'READ-UNCOMMITTED';
begin;
select f1, f2 from t1;
f1 f2
2
commit;
SET DEBUG_SYNC = 'now SIGNAL continue_insert';
drop table t1;
#
# Scenario 2: The row format is REDUNDANT (no blob prefix). The READ
# UNCOMMITTED transaction will see only the local prefix of f2.
#
create table t1 (f1 int primary key, f2 longblob) row_format=redundant;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`f1` int NOT NULL,
`f2` longblob,
PRIMARY KEY (`f1`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=REDUNDANT
insert into t1 values (1, repeat('x', 40000));
SET DEBUG_SYNC = 'blob_write_middle SIGNAL do_select WAIT_FOR continue_insert EXECUTE 2';
update t1 set f2 = repeat('y', 100000) where f1 = 1;;
SET DEBUG_SYNC = 'now WAIT_FOR do_select';
SET DEBUG_SYNC = 'now SIGNAL continue_insert';
SET DEBUG_SYNC = 'now WAIT_FOR do_select';
SET SESSION transaction_isolation = 'READ-UNCOMMITTED';
begin;
select length(f2) from t1 where f1 = 1;
length(f2)
0
commit;
SET DEBUG_SYNC = 'now SIGNAL continue_insert';
drop table t1;
#
# Scenario 3: The row format is REDUNDANT (no blob prefix). The READ
# UNCOMMITTED transaction will see the local prefix of new blob and
# the external part of the old blob.
#
create table t1 (f1 int primary key, f2 longblob) row_format=redundant;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`f1` int NOT NULL,
`f2` longblob,
PRIMARY KEY (`f1`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=REDUNDANT
insert into t1 values (1, repeat('x', 40000));
SET DEBUG_SYNC = 'blob_write_middle SIGNAL do_select WAIT_FOR continue_insert';
update t1 set f2 = repeat('y', 100000) where f1 = 1;;
SET DEBUG_SYNC = 'now WAIT_FOR do_select';
SET SESSION transaction_isolation = 'READ-UNCOMMITTED';
begin;
select f2 from t1 where f1 = 1;
f2
commit;
SET DEBUG_SYNC = 'now SIGNAL continue_insert';
drop table t1;
#
# Scenario 4: The row format is REDUNDANT (no blob prefix).
# The READ UNCOMMITTED transaction will see the local prefix
# of new blob and external part of old blob. It is different
# from Scenario 3 because this involves blob operation code
# OPCODE_INSERT_UPDATE.
#
create table t1 (f1 int primary key, f2 longblob) row_format=redundant;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`f1` int NOT NULL,
`f2` longblob,
PRIMARY KEY (`f1`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=REDUNDANT
start transaction;
insert into t1 values (1, repeat('x', 40000));
delete from t1 where f1 = 1;
SET DEBUG_SYNC = 'blob_write_middle SIGNAL do_select WAIT_FOR continue_insert';
insert into t1 values (1, repeat('y', 40000));;
SET DEBUG_SYNC = 'now WAIT_FOR do_select';
SET SESSION transaction_isolation = 'READ-UNCOMMITTED';
begin;
select f2 from t1 where f1 = 1;
f2
commit;
SET DEBUG_SYNC = 'now SIGNAL continue_insert';
commit;
drop table t1;
|