diff options
author | Satya B <satya.bn@sun.com> | 2009-01-22 11:25:26 +0530 |
---|---|---|
committer | Satya B <satya.bn@sun.com> | 2009-01-22 11:25:26 +0530 |
commit | 4a3e9851cf4297e48674758fa911eeb0f68c00ed (patch) | |
tree | 176c981d4f20625821c5e899c8cb4c253e23651b /mysql-test/t/myisampack.test | |
parent | 4562b69fedb26a5095f45dbe0441c952aa09001c (diff) | |
download | mariadb-git-4a3e9851cf4297e48674758fa911eeb0f68c00ed.tar.gz |
TestCase for BUG#41574 - REPAIR TABLE: crashes for compressed tables
Extending the existing testcase written for BUG#40949 to verify
repair table operation for compressed tables
mysql-test/r/myisampack.result:
Modified result file for myisampack.test
mysql-test/t/myisampack.test:
Modified Testcase to test repair operation for compressed tables
Diffstat (limited to 'mysql-test/t/myisampack.test')
-rw-r--r-- | mysql-test/t/myisampack.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/myisampack.test b/mysql-test/t/myisampack.test index 3b55154d433..8d4bb83dc01 100644 --- a/mysql-test/t/myisampack.test +++ b/mysql-test/t/myisampack.test @@ -34,6 +34,8 @@ DROP TABLE t1; # # Bug#40949 Debug version of MySQL server crashes when run OPTIMIZE on compressed table. +# expanded with testcase for +# BUG#41574 - REPAIR TABLE: crashes for compressed tables # --disable_warnings drop table if exists t1; @@ -55,4 +57,5 @@ insert into t1 select * from t1; flush tables; --exec $MYISAMPACK $MYSQLTEST_VARDIR/master-data/test/t1 optimize table t1; +repair table t1; drop table t1; |