~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

fixes for the installing from source doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
  return 1;
86
86
}
87
87
 
88
 
void Item_func_set_collation::print(String *str, enum_query_type query_type)
 
88
void Item_func_set_collation::print(String *str)
89
89
{
90
90
  str->append('(');
91
 
  args[0]->print(str, query_type);
 
91
  args[0]->print(str);
92
92
  str->append(STRING_WITH_LEN(" collate "));
93
93
  assert(args[1]->basic_const_item() &&
94
94
              args[1]->type() == Item::STRING_ITEM);