~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/min_max.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:
154
154
      my_decimal dec_buf, *dec_val= val_decimal(&dec_buf);
155
155
      if (null_value)
156
156
        return 0;
157
 
      my_decimal2string(E_DEC_FATAL_ERROR, dec_val, 0, 0, 0, str);
 
157
      class_decimal2string(E_DEC_FATAL_ERROR, dec_val, 0, 0, 0, str);
158
158
      return str;
159
159
    }
160
160
 
281
281
        if (tmp == &tmp_buf)
282
282
        {
283
283
          /* Move value out of tmp_buf as this will be reused on next loop */
284
 
          my_decimal2decimal(tmp, dec);
 
284
          class_decimal2decimal(tmp, dec);
285
285
          res= dec;
286
286
        }
287
287
        else