You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mysql-test/suite/ndb/r/ndb_alter_table_dml.result
+2-2
Original file line number
Diff line number
Diff line change
@@ -22,8 +22,8 @@ from parent join child
22
22
on (parent.b = child.a)
23
23
where parent.b > 5;
24
24
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
25
-
1 SIMPLE parent p0,p1 range b b 5 NULL 819 100.00 Using where with pushed condition ((`test`.`parent`.`b` > 5) and (`test`.`parent`.`b` is not null)); Using MRR
1 SIMPLE parent p0,p1,p2,p3,p4,p5,p6,p7 range b b 5 NULL 819 100.00 Using where with pushed condition ((`test`.`parent`.`b` > 5) and (`test`.`parent`.`b` is not null)); Using MRR
Note 1003 /* select#1 */ select `test`.`t1`.`a1234567890123456789012345678901234567890` AS `a1234567890123456789012345678901234567890`,`test`.`t1`.`a12345678901234567890123456789a1234567890` AS `a12345678901234567890123456789a1234567890` from `test`.`t1` where (`test`.`t1`.`a12345678901234567890123456789a1234567890` = 2)
616
620
select * from t1 where a12345678901234567890123456789a1234567890=2;
@@ -961,8 +965,8 @@ KEY `obj_id` (`obj_id`)
961
965
# here we used to segv
962
966
explain SELECT t1.id FROM t1 INNER JOIN t2 ON t1.id = t2.id WHERE t2.obj_id=1;
963
967
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b`,`test`.`t1`.`c` AS `c`,`test`.`t1`.`d` AS `d` from `test`.`t1` where (`test`.`t1`.`a` = 1)
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b`,`test`.`t1`.`c` AS `c`,`test`.`t1`.`d` AS `d` from `test`.`t1` where (`test`.`t1`.`a` = 1)
@@ -140,7 +140,7 @@ insert into t1 values(2,@b2,222,@d2);
140
140
commit;
141
141
explain select * from t1 where c = 111;
142
142
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
143
-
1 SIMPLE t1 p0,p1 ref c c 4 const # # NULL
143
+
1 SIMPLE t1 p0,p1,p2,p3,p4,p5,p6,p7 ref c c 4 const # # NULL
144
144
Warnings:
145
145
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b`,`test`.`t1`.`c` AS `c`,`test`.`t1`.`d` AS `d` from `test`.`t1` where (`test`.`t1`.`c` = 111)
@@ -254,7 +254,7 @@ insert into t1 values(9,'b9',999,'dd9');
254
254
commit;
255
255
explain select * from t1 where c >= 100 order by a;
256
256
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
257
-
1 SIMPLE t1 p0,p1 range c c 4 NULL # # Using where with pushed condition (`test`.`t1`.`c` >= 100); Using filesort
257
+
1 SIMPLE t1 p0,p1,p2,p3,p4,p5,p6,p7 range c c 4 NULL # # Using where with pushed condition (`test`.`t1`.`c` >= 100); Using filesort
258
258
Warnings:
259
259
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b`,`test`.`t1`.`c` AS `c`,`test`.`t1`.`d` AS `d` from `test`.`t1` where (`test`.`t1`.`c` >= 100) order by `test`.`t1`.`a`
260
260
select * from t1 where c >= 100 order by a;
@@ -292,7 +292,7 @@ insert into t1 values(2,@b2,222,@d2);
292
292
commit;
293
293
explain select * from t1 where c >= 100 order by a;
294
294
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
295
-
1 SIMPLE t1 p0,p1 index c PRIMARY 4 NULL # # Using where with pushed condition (`test`.`t1`.`c` >= 100)
295
+
1 SIMPLE t1 p0,p1,p2,p3,p4,p5,p6,p7 index c PRIMARY 4 NULL # # Using where with pushed condition (`test`.`t1`.`c` >= 100)
296
296
Warnings:
297
297
Note 1003 /* select#1 */ select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b`,`test`.`t1`.`c` AS `c`,`test`.`t1`.`d` AS `d` from `test`.`t1` where (`test`.`t1`.`c` >= 100) order by `test`.`t1`.`a`
0 commit comments