summaryrefslogtreecommitdiff
path: root/mysql-test/t/myisam.test
diff options
context:
space:
mode:
authoristruewing@stella.local <>2007-11-14 12:51:36 +0100
committeristruewing@stella.local <>2007-11-14 12:51:36 +0100
commit500d5c788ed42c8dd8837aadf14e2519f0d5b15b (patch)
tree1b533bd165fa5790312c8c37192da71742cea328 /mysql-test/t/myisam.test
parent6223deb694946e5a2c3e46eaf4f2ce5624b5e78a (diff)
parent43a53121570b9da6e857c4cf01e0fee28e310fd8 (diff)
downloadmariadb-git-500d5c788ed42c8dd8837aadf14e2519f0d5b15b.tar.gz
Merge stella.local:/home2/mydev/mysql-5.0-bug4692
into stella.local:/home2/mydev/mysql-5.1-bug4692
Diffstat (limited to 'mysql-test/t/myisam.test')
-rw-r--r--mysql-test/t/myisam.test6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/t/myisam.test b/mysql-test/t/myisam.test
index 6f24d84f4c0..43c40ab8966 100644
--- a/mysql-test/t/myisam.test
+++ b/mysql-test/t/myisam.test
@@ -1170,6 +1170,12 @@ SHOW TABLE STATUS LIKE 't1';
#--exec ls -log var/master-data/test/t1.MYI
#--exec myisamchk -dvv var/master-data/test/t1.MYI
#--exec myisamchk -iev var/master-data/test/t1.MYI
+--echo # Enable keys with parallel repair
+SET @@myisam_repair_threads=2;
+ALTER TABLE t1 DISABLE KEYS;
+ALTER TABLE t1 ENABLE KEYS;
+SET @@myisam_repair_threads=1;
+CHECK TABLE t1 EXTENDED;
DROP TABLE t1;
--echo End of 5.0 tests