~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2009-11-24 02:06:37 UTC
  • mfrom: (1223.1.7 push)
  • Revision ID: brian@gaz-20091124020637-9gb65vj98x1arydm
Merge for staging.

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
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#include "config.h"
21
 
#include <math.h>
22
 
#include "floor.h"
23
 
 
24
 
#include <drizzled/type/decimal.h>
25
 
 
26
 
namespace drizzled
27
 
{
 
20
#include <drizzled/server_includes.h>
 
21
#include <drizzled/function/math/floor.h>
 
22
 
28
23
 
29
24
int64_t Item_func_floor::int_op()
30
25
{
36
31
    break;
37
32
  case DECIMAL_RESULT:
38
33
  {
39
 
    type::Decimal dec_buf, *dec;
 
34
    my_decimal dec_buf, *dec;
40
35
    if ((dec= Item_func_floor::decimal_op(&dec_buf)))
41
 
      dec->val_int32(E_DEC_FATAL_ERROR, unsigned_flag, &result);
 
36
      my_decimal2int(E_DEC_FATAL_ERROR, dec, unsigned_flag, &result);
42
37
    else
43
38
      result= 0;
44
39
    break;
61
56
}
62
57
 
63
58
 
64
 
type::Decimal *Item_func_floor::decimal_op(type::Decimal *decimal_value)
 
59
my_decimal *Item_func_floor::decimal_op(my_decimal *decimal_value)
65
60
{
66
 
  type::Decimal val, *value= args[0]->val_decimal(&val);
 
61
  my_decimal val, *value= args[0]->val_decimal(&val);
67
62
  if (!(null_value= (args[0]->null_value ||
68
 
                     class_decimal_floor(E_DEC_FATAL_ERROR, value,
 
63
                     my_decimal_floor(E_DEC_FATAL_ERROR, value,
69
64
                                      decimal_value) > 1)))
70
65
    return decimal_value;
71
66
  return 0;
72
67
}
73
68
 
74
 
} /* namespace drizzled */
 
69