~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

fixes for the installing from source doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
  max_length = args[0]->max_length*conv_charset->mbmaxlen;
48
48
}
49
49
 
50
 
void Item_func_conv_charset::print(String *str, enum_query_type query_type)
 
50
void Item_func_conv_charset::print(String *str)
51
51
{
52
52
  str->append(STRING_WITH_LEN("convert("));
53
 
  args[0]->print(str, query_type);
 
53
  args[0]->print(str);
54
54
  str->append(STRING_WITH_LEN(" using "));
55
55
  str->append(conv_charset->csname);
56
56
  str->append(')');