summaryrefslogtreecommitdiff
path: root/mysql-test/suite/heap/heap_btree.result
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2020-03-09 14:53:35 +0200
committerMonty <monty@mariadb.org>2020-03-09 14:53:35 +0200
commit5c6c4b13952b0b832b3480bbb1cc9c9889244d33 (patch)
tree5fe523048fbda33196be8510c3aefe23c896c1a8 /mysql-test/suite/heap/heap_btree.result
parentc037cdadf47fc6dd0546ddade9f9168bed8a3690 (diff)
downloadmariadb-git-5c6c4b13952b0b832b3480bbb1cc9c9889244d33.tar.gz
Fixes for previous not-complete-push
Diffstat (limited to 'mysql-test/suite/heap/heap_btree.result')
-rw-r--r--mysql-test/suite/heap/heap_btree.result14
1 files changed, 7 insertions, 7 deletions
diff --git a/mysql-test/suite/heap/heap_btree.result b/mysql-test/suite/heap/heap_btree.result
index 0f749386756..8c1c8217b6a 100644
--- a/mysql-test/suite/heap/heap_btree.result
+++ b/mysql-test/suite/heap/heap_btree.result
@@ -59,10 +59,10 @@ a
869751
select * from t1 where a in (869751,736494,226312,802616);
a
-869751
-736494
226312
+736494
802616
+869751
alter table t1 engine=myisam;
explain select * from t1 where a in (869751,736494,226312,802616);
id select_type table type possible_keys key key_len ref rows Extra
@@ -350,11 +350,11 @@ insert into t1 values (869751),(736494),(226312),(802616),(728912);
alter table t1 add unique uniq_id using BTREE (a);
select 0+a from t1 where a > 736494;
0+a
-869751
802616
+869751
explain select 0+a from t1 where a > 736494;
id select_type table type possible_keys key key_len ref rows Extra
-1 SIMPLE t1 ALL uniq_id NULL NULL NULL 5 Using where
+1 SIMPLE t1 range uniq_id uniq_id 8 NULL 3 Using where
select 0+a from t1 where a = 736494;
0+a
736494
@@ -370,13 +370,13 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range uniq_id uniq_id 8 NULL 2 Using where
select 0+a from t1 where a in (869751,736494,226312,802616);
0+a
-869751
-736494
226312
+736494
802616
+869751
explain select 0+a from t1 where a in (869751,736494,226312,802616);
id select_type table type possible_keys key key_len ref rows Extra
-1 SIMPLE t1 ALL uniq_id NULL NULL NULL 5 Using where
+1 SIMPLE t1 range uniq_id uniq_id 8 NULL 4 Using where
drop table t1;
End of 5.3 tests
create table t1 (id int, a varchar(300) not null, key using btree(a)) engine=heap;