~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Eric Day
  • Date: 2009-08-31 23:50:37 UTC
  • mto: This revision was merged to the branch mainline in revision 1134.
  • Revision ID: eday@oddments.org-20090831235037-hwwe6zhq94o4lxtd
Removed purecov messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
  int64_t result;
33
33
 
34
34
  if ((null_value= args[0]->null_value || args[1]->null_value))
35
 
    return 0; /* purecov: inspected */
 
35
    return 0;
36
36
  if (val2 == 0)
37
37
  {
38
38
    signal_divide_by_null();
55
55
  double value= args[0]->val_real();
56
56
  double val2=  args[1]->val_real();
57
57
  if ((null_value= args[0]->null_value || args[1]->null_value))
58
 
    return 0.0; /* purecov: inspected */
 
58
    return 0.0;
59
59
  if (val2 == 0.0)
60
60
  {
61
61
    signal_divide_by_null();