~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/identifier/catalog.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:
73
73
    || _name.size() > NAME_LEN
74
74
    || _name.at(_name.length() -1 ) == ' ')
75
75
    return false;
76
 
  const CHARSET_INFO& cs= my_charset_utf8mb4_general_ci;
 
76
  const charset_info_st& cs= my_charset_utf8mb4_general_ci;
77
77
  int well_formed_error;
78
78
  uint32_t res= cs.cset->well_formed_len(&cs, _name.c_str(), _name.c_str() + _name.length(), NAME_CHAR_LEN, &well_formed_error);
79
79
  if (well_formed_error)