17
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
#include <drizzled/server_includes.h>
22
26
#include <drizzled/sql_string.h>
23
27
#include <drizzled/sql_list.h>
25
#include <drizzled/function/math/int.h>
26
#include <drizzled/field/int64_t.h>
27
#include <drizzled/field/long.h>
28
#include <drizzled/field/double.h>
29
#include <drizzled/field/decimal.h>
30
#include <drizzled/session.h>
31
#include <drizzled/error.h>
32
#include <drizzled/check_stack_overrun.h>
29
#include <drizzled/functions/int.h>
31
#include <drizzled/util/math.h>
33
#if defined(CMATH_NAMESPACE)
34
using namespace CMATH_NAMESPACE;
42
39
void Item_func::set_arguments(List<Item> &list)
224
221
Item **arg,**arg_end;
228
225
(*traverser)(this, argument);
229
226
for (arg= args, arg_end= args+arg_count; arg != arg_end; arg++)
231
228
(*arg)->traverse_cond(traverser, argument, order);
235
232
for (arg= args, arg_end= args+arg_count; arg != arg_end; arg++)
237
234
(*arg)->traverse_cond(traverser, argument, order);
343
340
Item **arg, **arg_end;
344
341
for (arg= args, arg_end= args+arg_count; arg != arg_end ; arg++)
345
(*arg)->split_sum_func(session, ref_pointer_array, fields, arg, true);
342
(*arg)->split_sum_func2(session, ref_pointer_array, fields, arg, true);
465
462
case STRING_RESULT:
466
463
return make_string_field(table);
467
465
case DECIMAL_RESULT:
468
field= new Field_decimal(my_decimal_precision_to_length(decimal_precision(),
466
field= new Field_new_decimal(
467
my_decimal_precision_to_length(decimal_precision(),
470
maybe_null, name, decimals, unsigned_flag);
521
517
double Item_func::fix_result(double value)
523
static double fix_infinity= numeric_limits<double>::infinity();
525
if (value != fix_infinity && value != -fix_infinity)
532
void Item_func::fix_num_length_and_dec()
534
uint32_t fl_length= 0;
536
for (uint32_t i=0 ; i < arg_count ; i++)
538
set_if_bigger(decimals,args[i]->decimals);
539
set_if_bigger(fl_length, args[i]->max_length);
541
max_length=float_length(decimals);
542
if (fl_length > max_length)
544
decimals= NOT_FIXED_DEC;
545
max_length= float_length(NOT_FIXED_DEC);
550
Set max_length/decimals of function if function is fixed point and
551
result length/precision depends on argument ones.
554
void Item_func::count_decimal_length()
559
for (uint32_t i= 0 ; i < arg_count ; i++)
561
set_if_bigger(decimals, args[i]->decimals);
562
set_if_bigger(max_int_part, args[i]->decimal_int_part());
563
set_if_smaller(unsigned_flag, args[i]->unsigned_flag);
565
int precision= min(max_int_part + decimals, DECIMAL_MAX_PRECISION);
566
max_length= my_decimal_precision_to_length(precision, decimals,
572
Set max_length of if it is maximum length of its arguments.
575
void Item_func::count_only_length()
579
for (uint32_t i=0 ; i < arg_count ; i++)
581
set_if_bigger(max_length, args[i]->max_length);
582
set_if_bigger(unsigned_flag, args[i]->unsigned_flag);
588
Set max_length/decimals of function if function is floating point and
589
result length/precision depends on argument ones.
592
void Item_func::count_real_length()
597
for (uint32_t i=0 ; i < arg_count ; i++)
599
if (decimals != NOT_FIXED_DEC)
601
set_if_bigger(decimals, args[i]->decimals);
602
set_if_bigger(length, (args[i]->max_length - args[i]->decimals));
604
set_if_bigger(max_length, args[i]->max_length);
606
if (decimals != NOT_FIXED_DEC)
610
if (length < max_length) // If previous operation gave overflow
611
max_length= UINT32_MAX;
619
void Item_func::signal_divide_by_null()
621
Session *session= current_session;
622
push_warning(session, DRIZZLE_ERROR::WARN_LEVEL_ERROR, ER_DIVISION_BY_ZERO, ER(ER_DIVISION_BY_ZERO));
627
Item *Item_func::get_tmp_table_item(Session *session)
629
if (!with_sum_func && !const_item() && functype() != SUSERVAR_FUNC)
630
return new Item_field(result_field);
631
return copy_or_same(session);
635
} /* namespace drizzled */