diff options
author | Sergei Golubchik <sergii@pisem.net> | 2011-07-15 09:09:33 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2011-07-15 09:09:33 +0200 |
commit | d89c19ceaab8cac24d581fbbd5cb9b06f5f917d4 (patch) | |
tree | b78c93bb423bbf4356edaa2b5043c81be6fdcd4c /mysql-test/suite/maria/t/maria3.test | |
parent | 27762df3048de68e2d8569af7ed1dd3abad5d961 (diff) | |
download | mariadb-git-d89c19ceaab8cac24d581fbbd5cb9b06f5f917d4.tar.gz |
maria suite ok
Diffstat (limited to 'mysql-test/suite/maria/t/maria3.test')
-rw-r--r-- | mysql-test/suite/maria/t/maria3.test | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mysql-test/suite/maria/t/maria3.test b/mysql-test/suite/maria/t/maria3.test index 5579afe11e3..822beea4c5a 100644 --- a/mysql-test/suite/maria/t/maria3.test +++ b/mysql-test/suite/maria/t/maria3.test @@ -191,7 +191,6 @@ drop table t1; CREATE TABLE t1 (a int, b int, v varchar(60000)) checksum=1 engine=aria; insert into t1 values (1,1,"aaa"),(1,2,null); checksum table t1; -lock table t1 write; insert into t1 values (1,3,repeat('c',30000)),(4,4,repeat('a',30000)); update t1 set v="row5" where b=4; delete from t1 where b=3; @@ -522,6 +521,10 @@ drop table t1, t2; # End of 5.1 tests +create table t1 (a int) engine=aria; +lock table t1 write; +drop table t1; + --disable_result_log --disable_query_log eval set global storage_engine=$default_engine, |