From: Date: June 28 2007 11:04am Subject: bk commit into 5.1 tree (svoj:1.2522) BUG#29207 List-Archive: http://lists.mysql.com/commits/29835 X-Bug: 29207 Message-Id: <20070628090425.35A4741CEC6@june.myoffice.izhnet.ru> Below is the list of changes that have just been committed into a local 5.1 repository of svoj. When svoj does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2007-06-28 14:04:20+05:00, svoj@stripped +1 -0 BUG#29207 - archive table reported as corrupt by check table After merge fix. mysql-test/r/archive.result@stripped, 2007-06-28 14:04:19+05:00, svoj@stripped +7 -0 After merge fix. # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: svoj # Host: june.mysql.com # Root: /home/svoj/devel/mysql/BUG29250/mysql-5.1-engines --- 1.32/mysql-test/r/archive.result 2007-06-28 12:06:29 +05:00 +++ 1.33/mysql-test/r/archive.result 2007-06-28 14:04:19 +05:00 @@ -12675,3 +12675,10 @@ select * from t1; i 1 drop table t1; +create table t1(a longblob) engine=archive; +insert into t1 set a=''; +insert into t1 set a='a'; +check table t1 extended; +Table Op Msg_type Msg_text +test.t1 check status OK +drop table t1;