Below is the list of changes that have just been committed into a local
5.0 repository of igor. When igor 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.1984 05/06/28 12:00:38 igor@stripped +1 -0
opt_range.cc:
Fixed a compilation error.
sql/opt_range.cc
1.178 05/06/28 12:00:07 igor@stripped +2 -3
Fixed a compilation error.
# 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: igor
# Host: rurik.mysql.com
# Root: /home/igor/dev/mysql-5.0-0
--- 1.177/sql/opt_range.cc Tue Jun 28 10:40:18 2005
+++ 1.178/sql/opt_range.cc Tue Jun 28 12:00:07 2005
@@ -3871,9 +3871,8 @@
negative integers (which otherwise fails because at query execution time
negative integers are cast to unsigned if compared with unsigned).
*/
- Item_result field_result_type= field->result_type();
- Item_result value_result_type= value->result_type();
- if (field_result_type == INT_RESULT && value_result_type == INT_RESULT &&
+ if (field->result_type() == INT_RESULT &&
+ value->result_type() == INT_RESULT &&
((Field_num*)field)->unsigned_flag && !((Item_int*)value)->unsigned_flag)
{
longlong item_val= value->val_int();
| Thread |
|---|
| • bk commit into 5.0 tree (igor:1.1984) | igor | 28 Jun |