~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/str/conv_charset.h

  • 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:
29
29
  bool use_cached_value;
30
30
public:
31
31
  bool safe;
32
 
  const CHARSET_INFO *conv_charset; // keep it public
33
 
  Item_func_conv_charset(Item *a, const CHARSET_INFO * const cs) :Item_str_func(a)
 
32
  const charset_info_st *conv_charset; // keep it public
 
33
  Item_func_conv_charset(Item *a, const charset_info_st * const cs) :Item_str_func(a)
34
34
  { conv_charset= cs; use_cached_value= 0; safe= 0; }
35
 
  Item_func_conv_charset(Item *a, const CHARSET_INFO * const cs, bool cache_if_const)
 
35
  Item_func_conv_charset(Item *a, const charset_info_st * const cs, bool cache_if_const)
36
36
    :Item_str_func(a)
37
37
  {
38
38
    assert(args[0]->fixed);