mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge zippy.cornsilk.net:/home/cmiller/work/mysql/bug23411/my50-bug23411
into zippy.cornsilk.net:/home/cmiller/work/mysql/bug23411/my51-bug23411 BitKeeper/etc/collapsed: auto-union mysql-test/r/func_test.result: Auto merged sql/item_func.cc: Auto merged
This commit is contained in:
@ -105,7 +105,7 @@ Item_func::Item_func(THD *thd, Item_func *item)
|
||||
|
||||
|
||||
/*
|
||||
Resolve references to table column for a function and it's argument
|
||||
Resolve references to table column for a function and its argument
|
||||
|
||||
SYNOPSIS:
|
||||
fix_fields()
|
||||
@ -1397,6 +1397,13 @@ void Item_func_mod::result_precision()
|
||||
}
|
||||
|
||||
|
||||
void Item_func_mod::fix_length_and_dec()
|
||||
{
|
||||
Item_num_op::fix_length_and_dec();
|
||||
maybe_null= 1;
|
||||
}
|
||||
|
||||
|
||||
double Item_func_neg::real_op()
|
||||
{
|
||||
double value= args[0]->val_real();
|
||||
|
Reference in New Issue
Block a user