From: Date: November 8 2006 5:41pm Subject: bk commit into 5.1 tree (holyfoot:1.2326) List-Archive: http://lists.mysql.com/commits/15029 Message-Id: <20061108164156.D1DB670001A@deer.myoffice.izhnet.ru> Below is the list of changes that have just been committed into a local 5.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@stripped, 2006-11-08 20:41:47+04:00, holyfoot@stripped +1 -0 merging sql/field.cc@stripped, 2006-11-08 20:41:44+04:00, holyfoot@stripped +1 -1 here we can get negative values # 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-5.1.clean --- 1.347/sql/field.cc 2006-11-08 20:41:56 +04:00 +++ 1.348/sql/field.cc 2006-11-08 20:41:56 +04:00 @@ -4926,7 +4926,7 @@ int Field_time::store_time(TIME *ltime, (ltime->minute * 100 + ltime->second); if (ltime->neg) tmp= -tmp; - return Field_time::store((longlong) tmp, TRUE); + return Field_time::store((longlong) tmp, FALSE); }