Skip to content

Commit 58a0d5c

Browse files
committed
merge 7.1 -> 7.2
2 parents d90399a + 5f995eb commit 58a0d5c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

mysql-test/suite/ndb_big/ndb_big_addnode.result

+3-3
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,10 @@ HashMap DEFAULT-HASHMAP-3840-8
140140

141141

142142
## Simple blob usage of t6
143-
select count(0) as row_count, min(id) as id_min, max(id) as id_max, sum(length(dat)) as data_length, sum(length(txt)) as text_length from t6;
143+
select count(0) as row_count, min(abs(id)) as id_min, max(id) as id_max, sum(length(dat)) as data_length, sum(length(txt)) as text_length from t6;
144144
row_count id_min id_max data_length text_length
145-
1000 -4591 9991 29740000 29740000
146-
select count(0) from t6;
145+
1000 1 9991 29740000 29740000
146+
select count(0) from t6 where val = abs(id) and (id between -4991 and -4001 or id between -991 and 9991);
147147
count(0)
148148
1000
149149

mysql-test/suite/ndb_big/ndb_big_addnode.test

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ if (!$t5_part_diff)
177177
}
178178

179179
## Simple blob usage of t6
180-
select count(0) as row_count, min(id) as id_min, max(id) as id_max, sum(length(dat)) as data_length, sum(length(txt)) as text_length from t6;
181-
select count(0) from t6;
180+
select count(0) as row_count, min(abs(id)) as id_min, max(id) as id_max, sum(length(dat)) as data_length, sum(length(txt)) as text_length from t6;
181+
select count(0) from t6 where val = abs(id) and (id between -4991 and -4001 or id between -991 and 9991);
182182
let $count= `select count(0) from t6 where abs(id) <> val or (left(dat,if(val mod 1000 < 100, 2, 3)) div 25 <> (val mod 1000) div 25 and left(dat,3) <> 'old') or length(dat) <> length(txt)` ;
183183
if ($count)
184184
{

0 commit comments

Comments
 (0)