summaryrefslogtreecommitdiff
path: root/mysql-test/t/heap_btree.test
diff options
context:
space:
mode:
authorramil/ram@mysql.com/myoffice.izhnet.ru <>2006-08-14 12:59:54 +0500
committerramil/ram@mysql.com/myoffice.izhnet.ru <>2006-08-14 12:59:54 +0500
commitdc4b2a4f1dc6ea2533e75f3eb8397c5c1ad9fbf8 (patch)
tree8f35ef3ec041771e7bb88699c0aeb8ebefee50a5 /mysql-test/t/heap_btree.test
parentbc1e69d4530c093267a39180aefeba855c607674 (diff)
downloadmariadb-git-dc4b2a4f1dc6ea2533e75f3eb8397c5c1ad9fbf8.tar.gz
Make the heap_btree test repeatable.
Diffstat (limited to 'mysql-test/t/heap_btree.test')
-rw-r--r--mysql-test/t/heap_btree.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/t/heap_btree.test b/mysql-test/t/heap_btree.test
index f510f97fe9b..9aa820becd9 100644
--- a/mysql-test/t/heap_btree.test
+++ b/mysql-test/t/heap_btree.test
@@ -172,14 +172,14 @@ create table t1(a int not null, key using btree(a)) engine=heap;
insert into t1 values (2), (2), (2), (1), (1), (3), (3), (3), (3);
select a from t1 where a > 2;
delete from t1 where a < 4;
-select a from t1;
+select a from t1 order by a;
insert into t1 values (2), (2), (2), (1), (1), (3), (3), (3), (3);
select a from t1 where a > 4;
delete from t1 where a > 4;
-select a from t1;
+select a from t1 order by a;
select a from t1 where a > 3;
delete from t1 where a >= 2;
-select a from t1;
+select a from t1 order by a;
drop table t1;
--echo End of 4.1 tests