~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_strfunc.h

  • Committer: Andrey Hristov
  • Date: 2008-08-06 00:04:45 UTC
  • mto: (264.1.5 codestyle)
  • mto: This revision was merged to the branch mainline in revision 266.
  • Revision ID: ahristov@mysql.com-20080806000445-84urmltikgwk9v5d
Constify the usage of CHARSET_INFO almost to the last place in the code.
99% of the parameters are const CHARSET_INFO * const cs.
Wherever possible stack variables are also double consted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
213
213
public:
214
214
  Item_func_sysconst()
215
215
  { collation.set(system_charset_info,DERIVATION_SYSCONST); }
216
 
  Item *safe_charset_converter(CHARSET_INFO *tocs);
 
216
  Item *safe_charset_converter(const CHARSET_INFO * const tocs);
217
217
  /*
218
218
    Used to create correct Item name in new converted item in
219
219
    safe_charset_converter, return string representation of this function
352
352
public:
353
353
  Item_func_char(List<Item> &list) :Item_str_func(list)
354
354
  { collation.set(&my_charset_bin); }
355
 
  Item_func_char(List<Item> &list, CHARSET_INFO *cs) :Item_str_func(list)
 
355
  Item_func_char(List<Item> &list, const CHARSET_INFO * const cs) :Item_str_func(list)
356
356
  { collation.set(cs); }  
357
357
  String *val_str(String *);
358
358
  void fix_length_and_dec() 
517
517
  bool use_cached_value;
518
518
public:
519
519
  bool safe;
520
 
  CHARSET_INFO *conv_charset; // keep it public
521
 
  Item_func_conv_charset(Item *a, CHARSET_INFO *cs) :Item_str_func(a) 
 
520
  const CHARSET_INFO *conv_charset; // keep it public
 
521
  Item_func_conv_charset(Item *a, const CHARSET_INFO * const cs) :Item_str_func(a) 
522
522
  { conv_charset= cs; use_cached_value= 0; safe= 0; }
523
 
  Item_func_conv_charset(Item *a, CHARSET_INFO *cs, bool cache_if_const) 
 
523
  Item_func_conv_charset(Item *a, const CHARSET_INFO * const cs, bool cache_if_const) 
524
524
    :Item_str_func(a) 
525
525
  {
526
526
    assert(args[0]->fixed);