~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/string_functions/format.cc

  • Committer: patrick crews
  • Date: 2011-02-23 17:17:25 UTC
  • mto: (2195.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2196.
  • Revision ID: gleebix@gmail.com-20110223171725-4tgewemxhsw1m7q8
Integrated randgen with dbqp.  We now have mode=randgen and a set of randgen test suites (very basic now).  Output = same as dtr : )  We also have mode=cleanup to kill any servers we have started.  Docs updates too.  Gendata utility allows us to populate test servers 

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
 
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
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
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#include "config.h"
 
20
#include <config.h>
21
21
#include "format.h"
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
 
25
29
using namespace std;
26
30
 
27
31
namespace drizzled
75
79
  if (args[0]->result_type() == DECIMAL_RESULT ||
76
80
      args[0]->result_type() == INT_RESULT)
77
81
  {
78
 
    my_decimal dec_val, rnd_dec, *res;
 
82
    type::Decimal dec_val, rnd_dec, *res;
79
83
    res= args[0]->val_decimal(&dec_val);
80
84
    if ((null_value=args[0]->null_value))
81
85
      return 0;
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);
 
86
    class_decimal_round(E_DEC_FATAL_ERROR, res, dec, false, &rnd_dec);
 
87
    class_decimal2string(&rnd_dec, 0, str);
84
88
    str_length= str->length();
85
89
    if (rnd_dec.sign())
86
90
      str_length--;