summaryrefslogtreecommitdiff
path: root/mysql-test/suite/heap/heap_btree.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/heap/heap_btree.result')
-rw-r--r--mysql-test/suite/heap/heap_btree.result4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/suite/heap/heap_btree.result b/mysql-test/suite/heap/heap_btree.result
index 526c76a52e8..a534e25565a 100644
--- a/mysql-test/suite/heap/heap_btree.result
+++ b/mysql-test/suite/heap/heap_btree.result
@@ -69,6 +69,10 @@ id select_type table type possible_keys key key_len ref rows Extra
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
+1 SIMPLE t1 index uniq_id uniq_id 4 NULL 5 Using where; Using index
+insert into t1 values (1),(2),(3),(4),(5),(6);
+explain select * 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 range uniq_id uniq_id 4 NULL 4 Using where; Using index
drop table t1;
create table t1 (x int not null, y int not null, key x using BTREE (x,y), unique y using BTREE (y))