~stewart/drizzle/docs-improvements-1

« back to all changes in this revision

Viewing changes to plugin/math_functions/abs.cc

merged with up to date trunk

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
41
41
}
42
42
 
43
43
 
44
 
my_decimal *Item_func_abs::decimal_op(my_decimal *decimal_value)
 
44
type::Decimal *Item_func_abs::decimal_op(type::Decimal *decimal_value)
45
45
{
46
 
  my_decimal val, *value= args[0]->val_decimal(&val);
 
46
  type::Decimal val, *value= args[0]->val_decimal(&val);
47
47
  if (!(null_value= args[0]->null_value))
48
48
  {
49
 
    my_decimal2decimal(value, decimal_value);
 
49
    class_decimal2decimal(value, decimal_value);
50
50
    if (decimal_value->sign())
51
 
      my_decimal_neg(decimal_value);
 
51
      class_decimal_neg(decimal_value);
52
52
    return decimal_value;
53
53
  }
54
54
  return 0;