diff options
author | unknown <monty@hundin.mysql.fi> | 2002-07-01 02:50:30 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-07-01 02:50:30 +0300 |
commit | 05939f456bad9d245b3887fd280833b72beb8c14 (patch) | |
tree | 0dcb801bf2b4efb080067fbd898f7e2333e6f375 /mysql-test/t/myisam.test | |
parent | 854814ad223962396a8c65a1be8a7c45c0b45256 (diff) | |
download | mariadb-git-05939f456bad9d245b3887fd280833b72beb8c14.tar.gz |
Removed purify warning
myisam/mi_check.c:
Clear memory after keys to avoid warnings when using purify.
(The keys will be written to file, so they are kind of used).
mysql-test/r/myisam.result:
Check repaired table
mysql-test/t/myisam.test:
Check repaired table
Diffstat (limited to 'mysql-test/t/myisam.test')
-rw-r--r-- | mysql-test/t/myisam.test | 2 |
1 files changed, 1 insertions, 1 deletions
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; - |