~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

fixes for the installing from source doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
220
220
  }
221
221
}
222
222
 
223
 
void Item_func_trim::print(String *str, enum_query_type query_type)
 
223
void Item_func_trim::print(String *str)
224
224
{
225
225
  if (arg_count == 1)
226
226
  {
227
 
    Item_func::print(str, query_type);
 
227
    Item_func::print(str);
228
228
    return;
229
229
  }
230
230
  str->append(Item_func_trim::func_name());
231
231
  str->append('(');
232
232
  str->append(mode_name());
233
233
  str->append(' ');
234
 
  args[1]->print(str, query_type);
 
234
  args[1]->print(str);
235
235
  str->append(STRING_WITH_LEN(" from "));
236
 
  args[0]->print(str, query_type);
 
236
  args[0]->print(str);
237
237
  str->append(')');
238
238
}
239
239