~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/min_max.cc

  • Committer: Eric Day
  • Date: 2009-08-31 23:50:37 UTC
  • mto: This revision was merged to the branch mainline in revision 1134.
  • Revision ID: eday@oddments.org-20090831235037-hwwe6zhq94o4lxtd
Removed purecov messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
  {
144
144
    double nr= val_real();
145
145
    if (null_value)
146
 
      return 0; /* purecov: inspected */
 
146
      return 0;
147
147
    str->set_real(nr,decimals,&my_charset_bin);
148
148
    return str;
149
149
  }