From: holyfoot Date: December 10 2005 2:20pm Subject: bk commit into 4.1 tree (holyfoot:1.2488) BUG#14320 List-Archive: http://lists.mysql.com/commits/59 X-Bug: 14320 Message-Id: <200512101420.jBAEK5YK001711@localhost.localdomain> Below is the list of changes that have just been committed into a local 4.1 repository of hf. When hf 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.2488 05/12/10 18:20:00 holyfoot@deer.(none) +1 -0 Fix for bug #14320 (MBROverlaps does wrong test) sql/spatial.h 1.15 05/12/10 18:19:15 holyfoot@stripped +1 -1 MBR::inner_point fixed # 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: holyfoot # Host: deer.(none) # Root: /home/hf/work/mysql-4.1.14320 --- 1.14/sql/spatial.h Fri Nov 4 17:17:29 2005 +++ 1.15/sql/spatial.h Sat Dec 10 18:19:15 2005 @@ -142,7 +142,7 @@ bool inner_point(double x, double y) const { /* The following should be safe, even if we compare doubles */ - return (xminx) && (yminx); + return (xminx) && (yminy); } int overlaps(const MBR *mbr)