summaryrefslogtreecommitdiff
path: root/mysql-test/r/heap.result
diff options
context:
space:
mode:
authormsvensson@neptunus.(none) <>2005-04-12 14:51:03 +0200
committermsvensson@neptunus.(none) <>2005-04-12 14:51:03 +0200
commita1c4918a6c8b97f2affc426e2d0060326fa0e93a (patch)
treec5b86e63193ae9094d2585357ab69f45d2aa2662 /mysql-test/r/heap.result
parent480063e07780f38699c8faca40c0d8ca56b8f15d (diff)
parent7387030e6762dbf27380305286b5f848b1fe20f8 (diff)
downloadmariadb-git-a1c4918a6c8b97f2affc426e2d0060326fa0e93a.tar.gz
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into neptunus.(none):/home/msvensson/mysql/mysql-5.0
Diffstat (limited to 'mysql-test/r/heap.result')
-rw-r--r--mysql-test/r/heap.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/heap.result b/mysql-test/r/heap.result
index 702daf98214..d2750fd5a43 100644
--- a/mysql-test/r/heap.result
+++ b/mysql-test/r/heap.result
@@ -40,7 +40,7 @@ a b
4 4
drop table t1;
create table t1 (a int not null) engine=heap;
-insert into t1 values (869751),(736494),(226312),(802616);
+insert into t1 values (869751),(736494),(226312),(802616),(728912);
select * from t1 where a > 736494;
a
869751
@@ -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 4 NULL 4 Using where; Using index
+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 (x), unique y (y))
engine=heap;