~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/string_functions/format.cc

  • Committer: Lee Bieber
  • Date: 2010-12-23 23:11:00 UTC
  • mfrom: (2024.1.1 clean)
  • Revision ID: kalebral@gmail.com-20101223231100-0rqirgz7ugkl10yp
Merge Brian - session list cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include <limits>
24
24
 
25
 
#include <drizzled/charset_info.h>
26
 
#include <drizzled/type/decimal.h>
27
 
#include <drizzled/table.h>
28
 
 
29
25
using namespace std;
30
26
 
31
27
namespace drizzled
79
75
  if (args[0]->result_type() == DECIMAL_RESULT ||
80
76
      args[0]->result_type() == INT_RESULT)
81
77
  {
82
 
    type::Decimal dec_val, rnd_dec, *res;
 
78
    my_decimal dec_val, rnd_dec, *res;
83
79
    res= args[0]->val_decimal(&dec_val);
84
80
    if ((null_value=args[0]->null_value))
85
81
      return 0;
86
 
    class_decimal_round(E_DEC_FATAL_ERROR, res, dec, false, &rnd_dec);
87
 
    class_decimal2string(&rnd_dec, 0, str);
 
82
    my_decimal_round(E_DEC_FATAL_ERROR, res, dec, false, &rnd_dec);
 
83
    my_decimal2string(E_DEC_FATAL_ERROR, &rnd_dec, 0, 0, 0, str);
88
84
    str_length= str->length();
89
85
    if (rnd_dec.sign())
90
86
      str_length--;