1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-18941: Temporarily record wrong result after MDEV-18922

This commit is contained in:
Marko Mäkelä
2019-03-15 18:06:30 +02:00
parent 3dd477db70
commit 09b2d37a32

View File

@ -66,7 +66,7 @@ a
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 8 NULL 5 Using where; Using index
1 SIMPLE t1 ALL uniq_id NULL NULL NULL 5 Using where
drop table t1;
create table t1 (x int not null, y int not null, key x using HASH (x), unique y using HASH (y))
engine=heap;