diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-01-02 21:46:33 -0700 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-01-02 21:46:33 -0700 |
commit | 1cf31b8537ae262fc8f1c327741afe20925361bc (patch) | |
tree | d63ad5159963d391188f54a2b4f70e730e370b82 /mysql-test/t/show_check.test | |
parent | 2218bce9cc1ac5bac5d1b27362ff55663768e4c2 (diff) | |
download | mariadb-git-1cf31b8537ae262fc8f1c327741afe20925361bc.tar.gz |
show_check.test fixed cleanup problem
rpl000014.test fixed bug in testcase
rename.test fixed cleanup problem
handler.cc added a comment
sql_class.h fixed bug in active_transaction() when MySQL was not compiled with transaction support
mysql-test/t/rename.test:
fixed cleanup problem
mysql-test/t/rpl000014.test:
fixed bug in testcase
mysql-test/t/show_check.test:
fixed cleanup problem
sql/handler.cc:
added a comment
sql/sql_class.h:
fixed bug in active_transaction() when MySQL was not compiled with transaction support
Diffstat (limited to 'mysql-test/t/show_check.test')
-rw-r--r-- | mysql-test/t/show_check.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/show_check.test b/mysql-test/t/show_check.test index d388a5403c7..aeb6d316fd8 100644 --- a/mysql-test/t/show_check.test +++ b/mysql-test/t/show_check.test @@ -1,6 +1,7 @@ # # Test of some show commands # +drop table if exists t1,t2; 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; |