~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2009-09-23 21:40:36 UTC
  • mfrom: (971.6.13 eday-purecov)
  • Revision ID: brian@gaz-20090923214036-bustj80ei8ysbayf
Old message removal by Eric (no actual code has been harmed in the production of
this patch...)

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
  assert(fixed == 1);
28
28
  double value= args[0]->val_real();
29
29
  if ((null_value=args[0]->null_value))
30
 
    return 0.0; /* purecov: inspected */
 
30
    return 0.0;
31
31
  return fix_result(exp(value));
32
32
}
33
33