diff options
author | Satya B <satya.bn@sun.com> | 2009-03-25 15:43:49 +0530 |
---|---|---|
committer | Satya B <satya.bn@sun.com> | 2009-03-25 15:43:49 +0530 |
commit | e557c3306a8045222794000f5a19a4b5454ba674 (patch) | |
tree | 6d7f3f43f10f0edaa30d60a9edff43af71e7b2c5 /mysql-test/r/myisampack.result | |
parent | 1b01a1ca6140d4f9d8a5076d37aa6aa08e8ea65c (diff) | |
parent | f11de02ea812eb8f85228ed22d0ddfcccbdec93f (diff) | |
download | mariadb-git-e557c3306a8045222794000f5a19a4b5454ba674.tar.gz |
merge 5.0-bugteam to 5.1-bugteam
Diffstat (limited to 'mysql-test/r/myisampack.result')
-rw-r--r-- | mysql-test/r/myisampack.result | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/r/myisampack.result b/mysql-test/r/myisampack.result index 50d700ab7a2..dc7f3e396d1 100644 --- a/mysql-test/r/myisampack.result +++ b/mysql-test/r/myisampack.result @@ -54,3 +54,14 @@ test.t1 repair error Table 'test.t1' is read only Warnings: Error 1036 Table 't1' is read only drop table t1; +# +# BUG#41541 - Valgrind warnings on packed MyISAM table +# +CREATE TABLE t1(f1 VARCHAR(200), f2 TEXT); +INSERT INTO t1 VALUES ('foo', 'foo1'), ('bar', 'bar1'); +FLUSH TABLE t1; +# Compress the table using MYISAMPACK tool +SELECT COUNT(*) FROM t1; +COUNT(*) +1024 +DROP TABLE t1; |