diff options
author | monty@mashka.mysql.fi <> | 2003-04-27 22:12:08 +0300 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-04-27 22:12:08 +0300 |
commit | dd377bfba62b5f9d8bc43b9d2fdaddbc4107d6e9 (patch) | |
tree | 9cf8ed6360561508fc24e4f8cc90f56282626854 /mysql-test/t/repair.test | |
parent | 8b20a878cc1f420739a726a9be87d074390b899a (diff) | |
download | mariadb-git-dd377bfba62b5f9d8bc43b9d2fdaddbc4107d6e9.tar.gz |
Fixed problem when comparing a key for a multi-byte-character set. (bug 152)
Use 0x.... as strings if 'new' mode. (bug 152)
Don't report -max on windows when InnoDB is enabled. (bug 332)
Reset current_linfo; This could cause a hang when doing PURGE LOGS.
Fix for row numbers in EXPLAIN (bug 322)
Fix that USE_FRM works for all table types (bug 97)
Diffstat (limited to 'mysql-test/t/repair.test')
-rw-r--r-- | mysql-test/t/repair.test | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/t/repair.test b/mysql-test/t/repair.test index 6d79014b23d..b901fb3467f 100644 --- a/mysql-test/t/repair.test +++ b/mysql-test/t/repair.test @@ -5,4 +5,6 @@ drop table if exists t1; create table t1 SELECT 1,"table 1"; repair table t1 use_frm; -drop table if exists t1; +alter table t1 TYPE=HEAP; +repair table t1 use_frm; +drop table t1; |