~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/math/round.cc

  • Committer: Monty Taylor
  • Date: 2009-12-25 08:50:15 UTC
  • mto: This revision was merged to the branch mainline in revision 1255.
  • Revision ID: mordred@inaugust.com-20091225085015-83sux5qsvy312gew
MEM_ROOT == memory::Root

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
26
26
#include <algorithm>
27
27
 
28
28
#include "drizzled/function/math/round.h"
29
 
#include "drizzled/util/test.h"
30
 
 
31
 
namespace drizzled
32
 
{
33
29
 
34
30
extern const double log_10[309];
35
31
 
100
96
 
101
97
    precision-= decimals_delta - length_increase;
102
98
    decimals= min(decimals_to_set, DECIMAL_MAX_SCALE);
103
 
    max_length= class_decimal_precision_to_length(precision, decimals,
 
99
    max_length= my_decimal_precision_to_length(precision, decimals,
104
100
                                               unsigned_flag);
105
101
    break;
106
102
  }
203
199
 
204
200
  if (truncate)
205
201
    value= (unsigned_flag) ?
206
 
      (int64_t)(((uint64_t) value / tmp) * tmp) : (value / tmp) * tmp;
 
202
      ((uint64_t) value / tmp) * tmp : (value / tmp) * tmp;
207
203
  else
208
204
    value= (unsigned_flag || value >= 0) ?
209
 
      (int64_t)(my_unsigned_round((uint64_t) value, tmp)) :
 
205
      my_unsigned_round((uint64_t) value, tmp) :
210
206
      -(int64_t) my_unsigned_round((uint64_t) -value, tmp);
211
207
  return value;
212
208
}
213
209
 
214
210
 
215
 
type::Decimal *Item_func_round::decimal_op(type::Decimal *decimal_value)
 
211
my_decimal *Item_func_round::decimal_op(my_decimal *decimal_value)
216
212
{
217
 
  type::Decimal val, *value= args[0]->val_decimal(&val);
 
213
  my_decimal val, *value= args[0]->val_decimal(&val);
218
214
  int64_t dec= args[1]->val_int();
219
215
 
220
216
  if (dec >= 0 || args[1]->unsigned_flag)
223
219
    dec= INT_MIN;
224
220
 
225
221
  if (!(null_value= (args[0]->null_value || args[1]->null_value ||
226
 
                     class_decimal_round(E_DEC_FATAL_ERROR, value, (int) dec,
 
222
                     my_decimal_round(E_DEC_FATAL_ERROR, value, (int) dec,
227
223
                                      truncate, decimal_value) > 1)))
228
224
  {
229
225
    decimal_value->frac= decimals;
232
228
  return 0;
233
229
}
234
230
 
235
 
} /* namespace drizzled */