~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

fixes for the installing from source doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
}
122
122
 
123
123
 
124
 
void Item_func_make_set::print(String *str, enum_query_type query_type)
 
124
void Item_func_make_set::print(String *str)
125
125
{
126
126
  str->append(STRING_WITH_LEN("make_set("));
127
 
  item->print(str, query_type);
 
127
  item->print(str);
128
128
  if (arg_count)
129
129
  {
130
130
    str->append(',');
131
 
    print_args(str, 0, query_type);
 
131
    print_args(str, 0);
132
132
  }
133
133
  str->append(')');
134
134
}