From: Date: September 29 2005 1:37pm Subject: bk commit into 4.0 tree (ingo:1.2157) BUG#9112 List-Archive: http://lists.mysql.com/internals/30504 X-Bug: 9112 Message-Id: Below is the list of changes that have just been committed into a local 4.0 repository of mydev. When mydev 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 1.2157 05/09/29 13:37:30 ingo@stripped +2 -0 Bug#9112 - Merge table with composite index producing invalid results with some queries Second platform fix for floating point rounding. mysql-test/t/merge.test 1.25 05/09/29 13:37:27 ingo@stripped +1 -1 Bug#9112 - Merge table with composite index producing invalid results with some queries Second platform fix for floating point rounding. mysql-test/r/merge.result 1.27 05/09/29 13:37:27 ingo@stripped +3 -3 Bug#9112 - Merge table with composite index producing invalid results with some queries Second platform fix for floating point rounding. # 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: ingo # Host: chilla.local # Root: /home/mydev/mysql-4.0-4000 --- 1.26/mysql-test/r/merge.result 2005-09-27 15:26:14 +02:00 +++ 1.27/mysql-test/r/merge.result 2005-09-29 13:37:27 +02:00 @@ -635,13 +635,13 @@ index (a,b) ) engine=myisam; insert into t2 values ( null, ''); -insert into t2 values ( 9999999999.9999, ''); +insert into t2 values ( 9999999999.999, ''); insert into t3 select * from t2; select min(a), max(a) from t1; min(a) max(a) -9999999999.9999 9999999999.9999 +9999999999.9990 9999999999.9990 flush tables; select min(a), max(a) from t1; min(a) max(a) -9999999999.9999 9999999999.9999 +9999999999.9990 9999999999.9990 drop table t1, t2, t3; --- 1.24/mysql-test/t/merge.test 2005-09-27 15:26:14 +02:00 +++ 1.25/mysql-test/t/merge.test 2005-09-29 13:37:27 +02:00 @@ -291,7 +291,7 @@ ) engine=myisam; insert into t2 values ( null, ''); -insert into t2 values ( 9999999999.9999, ''); +insert into t2 values ( 9999999999.999, ''); insert into t3 select * from t2; select min(a), max(a) from t1; flush tables;