summaryrefslogtreecommitdiff
path: root/mysql-test/t/ndb_basic.test
diff options
context:
space:
mode:
authormagnus@neptunus.(none) <>2004-05-25 14:40:51 +0200
committermagnus@neptunus.(none) <>2004-05-25 14:40:51 +0200
commit28c8ac884bd3d5ed95d2a9d3bdcdb99ec46f01d5 (patch)
treedacb079830ebc8c246acfbed83b1277a943f23d6 /mysql-test/t/ndb_basic.test
parent2bee88a4c24613595455508d55bdb739c1cb957e (diff)
downloadmariadb-git-28c8ac884bd3d5ed95d2a9d3bdcdb99ec46f01d5.tar.gz
Corrected index_flags returned when index are created with USING HASH
Updated ndb_ test cases
Diffstat (limited to 'mysql-test/t/ndb_basic.test')
-rw-r--r--mysql-test/t/ndb_basic.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/t/ndb_basic.test b/mysql-test/t/ndb_basic.test
index 05fb4e1103e..271357ed561 100644
--- a/mysql-test/t/ndb_basic.test
+++ b/mysql-test/t/ndb_basic.test
@@ -299,13 +299,13 @@ insert into t7 values
("Street Road 78", 3, 92, 3),
("Main street 89C", 5, 71, 4),
(NULL, 8, NULL, 12);
-select * from t7;
-select a, b from t7;
+select * from t7 order by a;
+select a, b from t7 order by a;
update t7 set adress="End of road 09" where a=3;
update t7 set adress="Gatuvägen 90C" where a=5 and c=4;
update t7 set adress="No adress" where adress is NULL;
-select * from t7;
+select * from t7 order by a;
select * from t7 where a=1 and c=2;
delete from t7 where a=1;
delete from t7 where a=3 and c=3;