~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/copy_string.cc

  • Committer: Brian Aker
  • Date: 2010-12-27 23:56:33 UTC
  • mfrom: (2034.2.5 clean)
  • Revision ID: brian@tangent.org-20101227235633-9wwf7j35lkf0g262
Merge in additional encapsulation of Decimal

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
  // Item_copy_string is used without fix_fields call
48
48
  if (null_value)
49
49
    return 0;
50
 
  string2_class_decimal(E_DEC_FATAL_ERROR, &str_value, decimal_value);
 
50
  decimal_value->store(E_DEC_FATAL_ERROR, &str_value);
 
51
 
51
52
  return (decimal_value);
52
53
}
53
54