diff options
author | unknown <lenz@mysql.com> | 2003-04-28 16:05:27 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2003-04-28 16:05:27 +0200 |
commit | 671e77a1f7bfbb51fdd2d9af361e226e89506048 (patch) | |
tree | e1dfc744da3e315945a4fa09531e6182a264dd50 /mysql-test/t/innodb.test | |
parent | 7318eff7df63b9fff04728669cdbf55058da5c54 (diff) | |
download | mariadb-git-671e77a1f7bfbb51fdd2d9af361e226e89506048.tar.gz |
- Removed two EXPLAIN SELECT statements from the InnoDB test suite
(the results are nondeterministic and provide different output on 32bit
and 64bit architectures)
mysql-test/r/innodb.result:
- removed two EXPLAIN SELECT results because the output is nondeterministic
(the result was different on 64bit platforms)
mysql-test/t/innodb.test:
- removed two EXPLAIN SELECT tests because the results are nondeterministic
(the result was different on 64bit platforms)
Diffstat (limited to 'mysql-test/t/innodb.test')
-rw-r--r-- | mysql-test/t/innodb.test | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mysql-test/t/innodb.test b/mysql-test/t/innodb.test index 88edaac190a..ab3157a7f86 100644 --- a/mysql-test/t/innodb.test +++ b/mysql-test/t/innodb.test @@ -823,8 +823,6 @@ insert into t1 (a) select b from t2; insert into t2 (a) select b from t1; insert into t1 (a) select b from t2; select count(*) from t1; -explain select a from t1 where a between 1 and 10000; -explain select * from t1 where a between 1 and 10000; 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; |