~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/math_functions/floor.cc

  • Committer: Brian Aker
  • Date: 2010-12-25 00:44:06 UTC
  • mto: This revision was merged to the branch mainline in revision 2031.
  • Revision ID: brian@tangent.org-20101225004406-4xna6p795yqkaony
Second pass through function names.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
  {
37
37
    my_decimal dec_buf, *dec;
38
38
    if ((dec= Item_func_floor::decimal_op(&dec_buf)))
39
 
      my_decimal2int(E_DEC_FATAL_ERROR, dec, unsigned_flag, &result);
 
39
      class_decimal2int(E_DEC_FATAL_ERROR, dec, unsigned_flag, &result);
40
40
    else
41
41
      result= 0;
42
42
    break;