summaryrefslogtreecommitdiff
path: root/sql/item_cmpfunc.cc
diff options
context:
space:
mode:
authorunknown <sergefp@mysql.com>2004-08-18 02:37:31 +0400
committerunknown <sergefp@mysql.com>2004-08-18 02:37:31 +0400
commit002dda7aca32d59807b1b4e2c893a92d639e1dd6 (patch)
tree5841afba51c90537aac4a1b93f79a7d21d6e8af6 /sql/item_cmpfunc.cc
parent4e9bb7a9a9734cea51299f145b3e7eeb9a5328e6 (diff)
downloadmariadb-git-002dda7aca32d59807b1b4e2c893a92d639e1dd6.tar.gz
Renamed Arg_comparator::compare_int -> compare_int_signed
Diffstat (limited to 'sql/item_cmpfunc.cc')
-rw-r--r--sql/item_cmpfunc.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/item_cmpfunc.cc b/sql/item_cmpfunc.cc
index 45a1918de1c..c440a0491c5 100644
--- a/sql/item_cmpfunc.cc
+++ b/sql/item_cmpfunc.cc
@@ -317,7 +317,7 @@ int Arg_comparator::set_compare_func(Item_bool_func2 *item, Item_result type)
}
else if (type == INT_RESULT)
{
- if (func == &Arg_comparator::compare_int)
+ if (func == &Arg_comparator::compare_int_signed)
{
if ((*a)->unsigned_flag)
func= ((*b)->unsigned_flag)? &Arg_comparator::compare_int_unsigned :
@@ -432,7 +432,7 @@ int Arg_comparator::compare_e_real()
return test(val1 == val2);
}
-int Arg_comparator::compare_int()
+int Arg_comparator::compare_int_signed()
{
longlong val1= (*a)->val_int();
if (!(*a)->null_value)