diff options
author | tomas@poseidon.ndb.mysql.com <> | 2004-10-04 12:26:26 +0000 |
---|---|---|
committer | tomas@poseidon.ndb.mysql.com <> | 2004-10-04 12:26:26 +0000 |
commit | e13b136c9a4439f0171af898e111a46bbb86b312 (patch) | |
tree | 514c5d951ef4245da7cd594f79f051b8b3728b6d /mysql-test/t/ndb_blob.test | |
parent | 534848558df08f3e0cfa9d126567d81ba332a764 (diff) | |
download | mariadb-git-e13b136c9a4439f0171af898e111a46bbb86b312.tar.gz |
bug #5872, transactions should only be restarted with transaction.on flag off if execute_commit has been performed
added testcase for this
use force send for all executes
Diffstat (limited to 'mysql-test/t/ndb_blob.test')
-rw-r--r-- | mysql-test/t/ndb_blob.test | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/t/ndb_blob.test b/mysql-test/t/ndb_blob.test index afa1a2c1455..5454dd91d26 100644 --- a/mysql-test/t/ndb_blob.test +++ b/mysql-test/t/ndb_blob.test @@ -309,6 +309,7 @@ select count(*) from t1; drop table t1; drop database mysqltest; +# bug #5349 set autocommit=1; use test; CREATE TABLE t1 ( @@ -325,4 +326,8 @@ INSERT INTO t1 VALUES select * from t1 order by a; alter table t1 engine=ndb; select * from t1 order by a; + +# bug #5872 +alter table t1 engine=myisam; +select * from t1 order by a; drop table t1; |