~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Merged trunk.

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