~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/min_max.cc

  • Committer: Brian Aker
  • Date: 2011-02-04 10:18:35 UTC
  • mfrom: (2143.1.4 drizzle-build)
  • Revision ID: brian@tangent.org-20110204101835-j23pv0febg9p0a2p
Merge of all local trees.

Show diffs side-by-side

added added

removed removed

Lines of Context:
154
154
      type::Decimal dec_buf, *dec_val= val_decimal(&dec_buf);
155
155
      if (null_value)
156
156
        return 0;
157
 
      class_decimal2string(E_DEC_FATAL_ERROR, dec_val, 0, 0, 0, str);
 
157
      class_decimal2string(dec_val, 0, str);
158
158
      return str;
159
159
    }
160
160