~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/hex_string.cc

  • Committer: Brian Aker
  • Date: 2011-01-17 04:15:23 UTC
  • mto: (2088.1.3 merge)
  • mto: This revision was merged to the branch mainline in revision 2089.
  • Revision ID: brian@gir-3-20110117041523-o9ex94kfz1a6iqyw
Modify TableIdentifier to fit with the rest of the identifiers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
}
76
76
 
77
77
 
78
 
my_decimal *Item_hex_string::val_decimal(my_decimal *decimal_value)
 
78
type::Decimal *Item_hex_string::val_decimal(type::Decimal *decimal_value)
79
79
{
80
80
  // following assert is redundant, because fixed=1 assigned in constructor
81
81
  assert(fixed == 1);
82
82
  uint64_t value= (uint64_t)val_int();
83
 
  int2my_decimal(E_DEC_FATAL_ERROR, value, true, decimal_value);
 
83
  int2_class_decimal(E_DEC_FATAL_ERROR, value, true, decimal_value);
84
84
  return (decimal_value);
85
85
}
86
86