diff options
author | unknown <mskold/marty@linux.site> | 2006-09-15 16:10:37 +0200 |
---|---|---|
committer | unknown <mskold/marty@linux.site> | 2006-09-15 16:10:37 +0200 |
commit | 577c3f0dc3ee3fc4cadca03ddf57ed6c58e4e19f (patch) | |
tree | d41bbb3a0bd4f4d27489f786da20d884b681ef2f /mysql-test/t/ndb_multi.test | |
parent | c8d44bd71822c752f71c3616399a1e28e283f2a1 (diff) | |
parent | bc4f0bd46203bd96dca5b4a2a7a135fa2bd58ce0 (diff) | |
download | mariadb-git-577c3f0dc3ee3fc4cadca03ddf57ed6c58e4e19f.tar.gz |
Merge mysql.com:/windows/Linux_space/MySQL/mysql-5.1
into mysql.com:/windows/Linux_space/MySQL/mysql-5.1-new-ndb
mysql-test/t/ndb_multi.test:
Auto merged
Diffstat (limited to 'mysql-test/t/ndb_multi.test')
-rw-r--r-- | mysql-test/t/ndb_multi.test | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mysql-test/t/ndb_multi.test b/mysql-test/t/ndb_multi.test index 6ac37a2b25e..75558ba24fe 100644 --- a/mysql-test/t/ndb_multi.test +++ b/mysql-test/t/ndb_multi.test @@ -68,5 +68,26 @@ show tables like 't4'; show tables; drop table t1, t2, t3, t4; +# bug#21378 +connection server1; +create table t1(c1 int key)ENGINE=MyISAM; +insert into t1 values(1),(3),(5); +select * from t1 order by c1; + +connection server2; +create table t1(c1 int key)ENGINE=MyISAM; +insert into t1 values(100),(344),(533); +select * from t1 order by c1; +connection server1; +alter table t1 engine=ndb; + +connection server2; +show tables; +select * from t1 order by c1; +drop table t1; + +connection server1; +select * from t1 order by c1; +drop table t1; # End of 4.1 tests |