From: msvensson Date: November 29 2006 10:03pm Subject: bk commit into 5.0 tree (msvensson:1.2317) BUG#19371 List-Archive: http://lists.mysql.com/commits/16167 X-Bug: 19371 Message-Id: <20061129220350.E5A8D86DEF1@neptunus.localdomain> Below is the list of changes that have just been committed into a local 5.0 repository of msvensson. When msvensson 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, 2006-11-29 23:03:45+01:00, msvensson@neptunus.(none) +1 -0 Bug#19371 VARBINARY() have trailing zeros after upgrade from 4.1 - chmod the saved files from 4.1 to make sure they are writable mysql-test/t/varbinary.test@stripped, 2006-11-29 23:03:43+01:00, msvensson@neptunus.(none) +3 -0 As the files saved from 4.1 has been in bk they muight be readonly Use "chmod" to make sure they are writable # 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: msvensson # Host: neptunus.(none) # Root: /home/msvensson/mysql/bug19731/my50-bug19731 --- 1.10/mysql-test/t/varbinary.test 2006-11-29 23:03:50 +01:00 +++ 1.11/mysql-test/t/varbinary.test 2006-11-29 23:03:50 +01:00 @@ -44,8 +44,11 @@ drop table t1; # Test with a saved table from 4.1 copy_file std_data/bug19371.frm $MYSQLTEST_VARDIR/master-data/test/t1.frm; +chmod 0777 $MYSQLTEST_VARDIR/master-data/test/t1.frm; copy_file std_data/bug19371.MYD $MYSQLTEST_VARDIR/master-data/test/t1.MYD; +chmod 0777 $MYSQLTEST_VARDIR/master-data/test/t1.MYD; copy_file std_data/bug19371.MYI $MYSQLTEST_VARDIR/master-data/test/t1.MYI; +chmod 0777 $MYSQLTEST_VARDIR/master-data/test/t1.MYI; # Everything _looks_ fine show create table t1;