summaryrefslogtreecommitdiff
path: root/sql/item_func.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sql/item_func.cc')
-rw-r--r--sql/item_func.cc9
1 files changed, 8 insertions, 1 deletions
diff --git a/sql/item_func.cc b/sql/item_func.cc
index 5deeccc9265..7719e0faa87 100644
--- a/sql/item_func.cc
+++ b/sql/item_func.cc
@@ -1935,8 +1935,11 @@ my_decimal *Item_func_mod::decimal_op(my_decimal *decimal_value)
void Item_func_mod::result_precision()
{
+ unsigned_flag= args[0]->unsigned_flag;
decimals= MY_MAX(args[0]->decimal_scale(), args[1]->decimal_scale());
- max_length= MY_MAX(args[0]->max_length, args[1]->max_length);
+ uint prec= MY_MAX(args[0]->decimal_precision(), args[1]->decimal_precision());
+ fix_char_length(my_decimal_precision_to_length_no_truncation(prec, decimals,
+ unsigned_flag));
}
@@ -1945,6 +1948,10 @@ bool Item_func_mod::fix_length_and_dec()
if (Item_num_op::fix_length_and_dec())
return true;
maybe_null= 1;
+ /*
+ result_precision() sets unsigned_flag for INT_RESULT and DECIMAL_RESULT.
+ Here we need to set it in case of REAL_RESULT.
+ */
unsigned_flag= args[0]->unsigned_flag;
return false;
}