diff options
author | unknown <serg@serg.mylan> | 2003-09-13 16:05:17 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2003-09-13 16:05:17 +0200 |
commit | 7eb9d41c46ea9922389e919a37704a7b2bac3701 (patch) | |
tree | 25309a92c4fd107024ed8077820fa2755b517ddd /mysql-test | |
parent | 80206632dc44f6a6db75d07cb46a69cc2498afea (diff) | |
download | mariadb-git-7eb9d41c46ea9922389e919a37704a7b2bac3701.tar.gz |
"normal" warning in test suite disabled
bad merge fixed
mysql-test/t/isam.test:
bad merge fixed
mysql-test/t/lock_tables_lost_commit.test:
"normal" warning in test suite disabled
mysql-test/t/subselect.test:
"normal" warning in test suite disabled
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/t/isam.test | 18 | ||||
-rw-r--r-- | mysql-test/t/lock_tables_lost_commit.test | 2 | ||||
-rw-r--r-- | mysql-test/t/subselect.test | 2 |
3 files changed, 3 insertions, 19 deletions
diff --git a/mysql-test/t/isam.test b/mysql-test/t/isam.test index f6c05d0f4bb..a31ba864b2f 100644 --- a/mysql-test/t/isam.test +++ b/mysql-test/t/isam.test @@ -72,24 +72,6 @@ show index from t1; drop table t1,t2; # -# Test of some show commands -# - -create table t1 (a int not null primary key, b int not null,c int not null, key(b,c)); -insert into t1 values (1,2,2),(2,2,3),(3,2,4),(4,2,4); -create table t2 type=isam select * from t1; -optimize table t1; -check table t1,t2; -repair table t1,t2; -check table t2,t1; -lock tables t1 write; -check table t2,t1; -show columns from t1; -show full columns from t1; -show index from t1; -drop table t1,t2; - -# # test of table with huge number of packed fields # diff --git a/mysql-test/t/lock_tables_lost_commit.test b/mysql-test/t/lock_tables_lost_commit.test index a8a7a65bd76..d8301017801 100644 --- a/mysql-test/t/lock_tables_lost_commit.test +++ b/mysql-test/t/lock_tables_lost_commit.test @@ -6,8 +6,8 @@ connect (con2,localhost,root,,); connection con1; --disable_warnings drop table if exists t1; ---enable_warnings create table t1(a int) type=innodb; +--enable_warnings lock tables t1 write; insert into t1 values(10); disconnect con1; diff --git a/mysql-test/t/subselect.test b/mysql-test/t/subselect.test index 304e5939718..ef46ba7d12c 100644 --- a/mysql-test/t/subselect.test +++ b/mysql-test/t/subselect.test @@ -892,9 +892,11 @@ DROP TABLE t1, t2; # # UNION unlocking test # +--disable_warnings create table t1 (a int) type=innodb; create table t2 (a int) type=innodb; create table t3 (a int) type=innodb; +--enable_warnings insert into t1 values (1),(2),(3),(4); insert into t2 values (10),(20),(30),(40); insert into t3 values (1),(2),(10),(50); |