From: Date: July 20 2007 10:27am Subject: bk commit into 5.1 tree (svoj:1.2558) BUG#28838 List-Archive: http://lists.mysql.com/commits/31215 X-Bug: 28838 Message-Id: <20070720082716.E09A041CEC6@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-07-20 13:27:12+05:00, svoj@stripped +1 -0 BUG#28838 - duplicate external_lock in mysql_alter_table Fixed wrong test case. Added lost row that appeared after fix for this bug. mysql-test/r/alter_table.result@stripped, 2007-07-20 13:27:11+05:00, svoj@stripped +2 -0 Fixed wrong test case. Added lost row that appeared after fix for BUG#28838 - duplicate external_lock in mysql_alter_table. diff -Nrup a/mysql-test/r/alter_table.result b/mysql-test/r/alter_table.result --- a/mysql-test/r/alter_table.result 2007-06-04 10:07:19 +05:00 +++ b/mysql-test/r/alter_table.result 2007-07-20 13:27:11 +05:00 @@ -1030,6 +1030,7 @@ select * from t2; c NULL 1 +Two Three lock table t2 write, t3 read; alter table t2 change c vc varchar(100) default "Four", rename to t1; @@ -1046,6 +1047,7 @@ select * from t1; vc NULL 1 +Two Three Four drop tables t1, t3;