summaryrefslogtreecommitdiff
path: root/mysql-test/suite/heap
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2019-03-15 18:06:30 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2019-03-15 18:18:45 +0200
commit09b2d37a3227a559aa157fc4a5da5fd6b2011e40 (patch)
tree9f96ee3053e22d4bed57ced79a1ebd18a7f8fc8f /mysql-test/suite/heap
parent3dd477db70e37325e3aa36645c0f22f16ffdf7f9 (diff)
downloadmariadb-git-09b2d37a3227a559aa157fc4a5da5fd6b2011e40.tar.gz
MDEV-18941: Temporarily record wrong result after MDEV-18922
Diffstat (limited to 'mysql-test/suite/heap')
-rw-r--r--mysql-test/suite/heap/heap_hash.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/heap/heap_hash.result b/mysql-test/suite/heap/heap_hash.result
index 603baf6c6b8..1fbfa99c61f 100644
--- a/mysql-test/suite/heap/heap_hash.result
+++ b/mysql-test/suite/heap/heap_hash.result
@@ -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;