diff options
author | Ramil Kalimullin <ramil@mysql.com> | 2009-12-17 10:52:43 +0400 |
---|---|---|
committer | Ramil Kalimullin <ramil@mysql.com> | 2009-12-17 10:52:43 +0400 |
commit | 4621d480fc476127722e7a14656051edebb3673c (patch) | |
tree | 24859cf9b1f0bec4fa17c53528f5c38de7efa95c /mysql-test/r/myisam.result | |
parent | 4338e06f518aa1d5e4c621b80a5b265afb603f61 (diff) | |
parent | 06be03f77cc1dbd3f52232d98fbab2d220d93fc5 (diff) | |
download | mariadb-git-4621d480fc476127722e7a14656051edebb3673c.tar.gz |
Auto-merge.
Diffstat (limited to 'mysql-test/r/myisam.result')
-rw-r--r-- | mysql-test/r/myisam.result | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/r/myisam.result b/mysql-test/r/myisam.result index 95fdc4fb93d..c68bc91aa41 100644 --- a/mysql-test/r/myisam.result +++ b/mysql-test/r/myisam.result @@ -1853,6 +1853,21 @@ CHECK TABLE t1; Table Op Msg_type Msg_text test.t1 check status OK DROP TABLE t1; +# +# Bug #49465: valgrind warnings and incorrect live checksum... +# +CREATE TABLE t1( +a VARCHAR(1), b VARCHAR(1), c VARCHAR(1), +f VARCHAR(1), g VARCHAR(1), h VARCHAR(1), +i VARCHAR(1), j VARCHAR(1), k VARCHAR(1)) CHECKSUM=1; +INSERT INTO t1 VALUES('', '', '', '', '', '', '', '', ''); +CHECKSUM TABLE t1 QUICK; +Table Checksum +test.t1 467455460 +CHECKSUM TABLE t1 EXTENDED; +Table Checksum +test.t1 467455460 +DROP TABLE t1; End of 5.0 tests create table t1 (a int not null, key `a` (a) key_block_size=1024); show create table t1; |