1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

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
This commit is contained in:
Satya B
2009-01-22 11:25:26 +05:30
parent abbc922b65
commit c82ba71fb0
2 changed files with 8 additions and 0 deletions

View File

@ -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;