diff options
author | unknown <mskold/marty@linux.site> | 2006-09-15 15:56:20 +0200 |
---|---|---|
committer | unknown <mskold/marty@linux.site> | 2006-09-15 15:56:20 +0200 |
commit | bc4f0bd46203bd96dca5b4a2a7a135fa2bd58ce0 (patch) | |
tree | e11e2747e9b8aa76ecd6c052db5d752930d0dba5 /mysql-test/t/ndb_multi.test | |
parent | a83390cbb55cfc58b5be965053070d76bd85d476 (diff) | |
parent | 73db46fb4f662bce4f9933dcd7a54f709602a845 (diff) | |
download | mariadb-git-bc4f0bd46203bd96dca5b4a2a7a135fa2bd58ce0.tar.gz |
Merge mysql.com:/windows/Linux_space/MySQL/mysql-5.0
into mysql.com:/windows/Linux_space/MySQL/mysql-5.1
mysql-test/r/ndb_condition_pushdown.result:
Auto merged
sql/ha_ndbcluster.cc:
Auto merged
sql/ha_ndbcluster.h:
Auto merged
mysql-test/r/ndb_multi.result:
Merge
mysql-test/t/ndb_multi.test:
Merge
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 36018e6c679..28c6fd4d3d7 100644 --- a/mysql-test/t/ndb_multi.test +++ b/mysql-test/t/ndb_multi.test @@ -69,5 +69,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 |