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 | c084645ca0cffcd4b4f93a9a5b995c3e34cff641 (patch) | |
tree | 6d7f3f43f10f0edaa30d60a9edff43af71e7b2c5 /mysql-test/r/myisampack.result | |
parent | 1be22714122c09115b5d5930031e43e9240d1d01 (diff) | |
parent | 8b95961f16a313ddb7545c3c2be338cb2b5bc85f (diff) | |
download | mariadb-git-c084645ca0cffcd4b4f93a9a5b995c3e34cff641.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; |