~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
  double value= args[0]->val_real();
27
27
  double val2= args[1]->val_real();
28
28
  if ((null_value=(args[0]->null_value || args[1]->null_value)))
29
 
    return 0.0; /* purecov: inspected */
 
29
    return 0.0;
30
30
  return fix_result(pow(value,val2));
31
31
}
32
32