diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2004-10-07 09:27:39 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2004-10-07 09:27:39 +0000 |
commit | 48923804cbc2ecde3acc69f9322f8e052bfd6c45 (patch) | |
tree | 74bfba7cdbf73aff02e7c0b54c2becdd8535fa11 /mysql-test/t/ps_7ndb.test | |
parent | 1f43673426eedf15809dd47c27b46bf8f1955c3f (diff) | |
download | mariadb-git-48923804cbc2ecde3acc69f9322f8e052bfd6c45.tar.gz |
added order by to give same order results on different endian and different sized clusters
Diffstat (limited to 'mysql-test/t/ps_7ndb.test')
-rw-r--r-- | mysql-test/t/ps_7ndb.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/ps_7ndb.test b/mysql-test/t/ps_7ndb.test index 848eac0080a..30e45f44a0e 100644 --- a/mysql-test/t/ps_7ndb.test +++ b/mysql-test/t/ps_7ndb.test @@ -55,7 +55,7 @@ select '------ delete tests ------' as test_sequence ; ## delete without parameter prepare stmt1 from 'delete from t1 where a=2' ; execute stmt1; -select a,b from t1 where a=2; +select a,b from t1 where a=2 order by b; # delete with row not found execute stmt1; @@ -270,7 +270,7 @@ set @arg02=82 ; set @arg03='8-2' ; prepare stmt1 from 'insert into t1 values(?,?),(?,?)'; execute stmt1 using @arg00, @arg01, @arg02, @arg03 ; -select a,b from t1 where a in (@arg00,@arg02) ; +select a,b from t1 where a in (@arg00,@arg02) order by a ; ## insert with two parameter in the set part set @arg00=9 ; |