From 0ba742ed3be55ff062a73fdb86104925c7550d26 Mon Sep 17 00:00:00 2001 From: "heikki@hundin.mysql.fi" <> Date: Wed, 2 Jul 2003 13:15:45 +0300 Subject: [PATCH] innodb.test, innodb.result: Remove nondeterministic EXPLAIN SELECT which gives on 64-bit platforms a slightly different estimate (sometimes we should study why we get different results on 64-bit and 32-bit) --- mysql-test/r/innodb.result | 3 --- mysql-test/t/innodb.test | 1 - 2 files changed, 4 deletions(-) diff --git a/mysql-test/r/innodb.result b/mysql-test/r/innodb.result index 465d4faf0bc..bb237e2e406 100644 --- a/mysql-test/r/innodb.result +++ b/mysql-test/r/innodb.result @@ -1238,9 +1238,6 @@ explain select * from t1 where c between 1 and 10000; table type possible_keys key key_len ref rows Extra t1 range c c 5 NULL 1 Using where update t1 set c=a; -explain select * from t1 where c between 1 and 10000; -table type possible_keys key key_len ref rows Extra -t1 ALL c NULL NULL NULL 27682 Using where drop table t1,t2; create table t1 (id int primary key auto_increment, fk int, index index_fk (fk)) type=innodb; insert into t1 (id) values (null),(null),(null),(null),(null); diff --git a/mysql-test/t/innodb.test b/mysql-test/t/innodb.test index cf203d87c8b..05b4370d0e0 100644 --- a/mysql-test/t/innodb.test +++ b/mysql-test/t/innodb.test @@ -830,7 +830,6 @@ insert into t1 (a) select b from t2; select count(*) from t1; explain select * from t1 where c between 1 and 10000; update t1 set c=a; -explain select * from t1 where c between 1 and 10000; drop table t1,t2; #