~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/decimal.cc

  • Committer: Brian Aker
  • Date: 2011-03-28 02:46:21 UTC
  • Revision ID: brian@tangent.org-20110328024621-wtkdtlvdplqm0ybf
Shift CHARSET_INFO to charset_info_st

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
{
28
28
 
29
29
Item_decimal::Item_decimal(const char *str_arg, uint32_t length,
30
 
                           const CHARSET_INFO * const charset)
 
30
                           const charset_info_st * const charset)
31
31
{
32
32
  decimal_value.store(E_DEC_FATAL_ERROR, str_arg, length, charset);
33
33
  name= (char*) str_arg;