~drizzle-trunk/drizzle/development

492.3.8 by Lee
code clean move Item_func_mod, Item_func_int_div, Item_func_neg to functions directory
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
1999.6.1 by kalebral at gmail
update Copyright strings to a more common format to help with creating the master debian copyright file
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
492.3.8 by Lee
code clean move Item_func_mod, Item_func_int_div, Item_func_neg to functions directory
5
 *
6
 *  This program is free software; you can redistribute it and/or modify
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation; version 2 of the License.
9
 *
10
 *  This program is distributed in the hope that it will be useful,
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 *  GNU General Public License for more details.
14
 *
15
 *  You should have received a copy of the GNU General Public License
16
 *  along with this program; if not, write to the Free Software
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 */
19
1241.9.36 by Monty Taylor
ZOMG. I deleted drizzled/server_includes.h.
20
#include "config.h"
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
21
642.1.30 by Lee
move math functions to drizzled/function/math directory
22
#include <drizzled/function/math/neg.h>
492.3.8 by Lee
code clean move Item_func_mod, Item_func_int_div, Item_func_neg to functions directory
23
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
24
namespace drizzled
25
{
26
492.3.8 by Lee
code clean move Item_func_mod, Item_func_int_div, Item_func_neg to functions directory
27
double Item_func_neg::real_op()
28
{
29
  double value= args[0]->val_real();
30
  null_value= args[0]->null_value;
31
  return -value;
32
}
33
34
35
int64_t Item_func_neg::int_op()
36
{
37
  int64_t value= args[0]->val_int();
38
  null_value= args[0]->null_value;
2015.1.3 by Brian Aker
Merge in CAST operators for SIGNED/UNSIGNED
39
492.3.8 by Lee
code clean move Item_func_mod, Item_func_int_div, Item_func_neg to functions directory
40
  return -value;
41
}
42
43
2030.1.4 by Brian Aker
Change my_decimal to Decimal
44
type::Decimal *Item_func_neg::decimal_op(type::Decimal *decimal_value)
492.3.8 by Lee
code clean move Item_func_mod, Item_func_int_div, Item_func_neg to functions directory
45
{
2030.1.4 by Brian Aker
Change my_decimal to Decimal
46
  type::Decimal val, *value= args[0]->val_decimal(&val);
492.3.8 by Lee
code clean move Item_func_mod, Item_func_int_div, Item_func_neg to functions directory
47
  if (!(null_value= args[0]->null_value))
48
  {
2030.1.3 by Brian Aker
Second pass through function names.
49
    class_decimal2decimal(value, decimal_value);
2030.1.2 by Brian Aker
First pass in refactoring of the name of my_decimal.
50
    class_decimal_neg(decimal_value);
492.3.8 by Lee
code clean move Item_func_mod, Item_func_int_div, Item_func_neg to functions directory
51
    return decimal_value;
52
  }
53
  return 0;
54
}
55
56
57
void Item_func_neg::fix_num_length_and_dec()
58
{
59
  decimals= args[0]->decimals;
60
  /* 1 add because sign can appear */
61
  max_length= args[0]->max_length + 1;
62
}
63
64
65
void Item_func_neg::fix_length_and_dec()
66
{
67
  Item_func_num1::fix_length_and_dec();
68
69
  /*
70
    If this is in integer context keep the context as integer if possible
71
    (This is how multiplication and other integer functions works)
72
    Use val() to get value as arg_type doesn't mean that item is
73
    Item_int or Item_real due to existence of Item_param.
74
  */
75
  if (hybrid_type == INT_RESULT && args[0]->const_item())
76
  {
77
    int64_t val= args[0]->val_int();
78
    if ((uint64_t) val >= (uint64_t) INT64_MIN &&
79
        ((uint64_t) val != (uint64_t) INT64_MIN ||
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
80
          args[0]->type() != INT_ITEM))
492.3.8 by Lee
code clean move Item_func_mod, Item_func_int_div, Item_func_neg to functions directory
81
    {
82
      /*
83
        Ensure that result is converted to DECIMAL, as int64_t can't hold
84
        the negated number
85
      */
86
      hybrid_type= DECIMAL_RESULT;
87
    }
88
  }
2015.1.3 by Brian Aker
Merge in CAST operators for SIGNED/UNSIGNED
89
  unsigned_flag= false;
492.3.8 by Lee
code clean move Item_func_mod, Item_func_int_div, Item_func_neg to functions directory
90
}
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
91
92
} /* namespace drizzled */