summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2002-07-01 02:55:57 +0300
committerunknown <monty@hundin.mysql.fi>2002-07-01 02:55:57 +0300
commitf26ae21229b11bae1b031b6ab68e9f43c9716f9e (patch)
tree22ce06c026fd8287b40f223ea6971ed1e3a070bf /mysql-test
parentb09ab3413cd0938f19570676d1b65af98544bcf2 (diff)
parent05939f456bad9d245b3887fd280833b72beb8c14 (diff)
downloadmariadb-git-f26ae21229b11bae1b031b6ab68e9f43c9716f9e.tar.gz
Merge work:/home/bk/mysql-4.0 into hundin.mysql.fi:/my/bk/mysql-4.0
myisam/mi_check.c: Auto merged
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/r/myisam.result3
-rw-r--r--mysql-test/t/myisam.test2
2 files changed, 4 insertions, 1 deletions
diff --git a/mysql-test/r/myisam.result b/mysql-test/r/myisam.result
index ac9665ad906..8750ea94125 100644
--- a/mysql-test/r/myisam.result
+++ b/mysql-test/r/myisam.result
@@ -96,4 +96,7 @@ INSERT INTO t1 (post_text) VALUES ('ceci est un test'),('ceci est un test'),('ce
REPAIR TABLE t1;
Table Op Msg_type Msg_text
test.t1 repair status OK
+CHECK TABLE t1;
+Table Op Msg_type Msg_text
+test.t1 check status OK
drop table t1;
diff --git a/mysql-test/t/myisam.test b/mysql-test/t/myisam.test
index 8a65ffcc72f..c607cb4d63e 100644
--- a/mysql-test/t/myisam.test
+++ b/mysql-test/t/myisam.test
@@ -91,5 +91,5 @@ CREATE TABLE `t1` (
INSERT INTO t1 (post_text) VALUES ('ceci est un test'),('ceci est un test'),('ceci est un test'),('ceci est un test'),('ceci est un test');
REPAIR TABLE t1;
+CHECK TABLE t1;
drop table t1;
-