~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/numhybrid.cc

  • Committer: Brian Aker
  • Date: 2009-09-23 21:40:36 UTC
  • mfrom: (971.6.13 eday-purecov)
  • Revision ID: brian@gaz-20090923214036-bustj80ei8ysbayf
Old message removal by Eric (no actual code has been harmed in the production of
this patch...)

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
  {
47
47
    int64_t nr= int_op();
48
48
    if (null_value)
49
 
      return 0; /* purecov: inspected */
 
49
      return 0;
50
50
    str->set_int(nr, unsigned_flag, &my_charset_bin);
51
51
    break;
52
52
  }
54
54
  {
55
55
    double nr= real_op();
56
56
    if (null_value)
57
 
      return 0; /* purecov: inspected */
 
57
      return 0;
58
58
    str->set_real(nr,decimals,&my_charset_bin);
59
59
    break;
60
60
  }