~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_sum.cc

  • Committer: Brian Aker
  • Date: 2008-10-12 04:54:49 UTC
  • Revision ID: brian@tangent.org-20081012045449-n5u2qaqriafayr0n
Second pass on unsigned

Show diffs side-by-side

added added

removed removed

Lines of Context:
1579
1579
                             &end_not_used, &err_not_used) : 0.0);
1580
1580
  }
1581
1581
  case INT_RESULT:
1582
 
    if (unsigned_flag)
1583
 
      return uint64_t2double(sum_int);
1584
1582
    return (double) sum_int;
1585
1583
  case DECIMAL_RESULT:
1586
1584
    my_decimal2double(E_DEC_FATAL_ERROR, &sum_dec, &sum);