~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Padraig O'Sullivan
  • Date: 2009-07-30 02:39:13 UTC
  • mto: (1115.3.11 captain)
  • mto: This revision was merged to the branch mainline in revision 1121.
  • Revision ID: osullivan.padraig@gmail.com-20090730023913-o2zuocp32l6btnc2
Removing references to MY_BITMAP throughout the code base and updating calls
to MyBitmap in various places to use the new interface.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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>
 
20
#include <drizzled/server_includes.h>
22
21
#include <drizzled/function/math/mod.h>
23
22
 
24
23
#include <algorithm>
25
24
 
26
25
using namespace std;
27
26
 
28
 
namespace drizzled
29
 
{
30
 
 
31
27
int64_t Item_func_mod::int_op()
32
28
{
33
29
  assert(fixed == 1);
36
32
  int64_t result;
37
33
 
38
34
  if ((null_value= args[0]->null_value || args[1]->null_value))
39
 
    return 0;
 
35
    return 0; /* purecov: inspected */
40
36
  if (val2 == 0)
41
37
  {
42
38
    signal_divide_by_null();
59
55
  double value= args[0]->val_real();
60
56
  double val2=  args[1]->val_real();
61
57
  if ((null_value= args[0]->null_value || args[1]->null_value))
62
 
    return 0.0;
 
58
    return 0.0; /* purecov: inspected */
63
59
  if (val2 == 0.0)
64
60
  {
65
61
    signal_divide_by_null();
108
104
  unsigned_flag= args[0]->unsigned_flag;
109
105
}
110
106
 
111
 
} /* namespace drizzled */