~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/set_user_var.cc

fixes for the installing from source doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
312
312
  return entry->val_decimal(&null_value, val);
313
313
}
314
314
 
315
 
void Item_func_set_user_var::print(String *str, enum_query_type query_type)
 
315
void Item_func_set_user_var::print(String *str)
316
316
{
317
317
  str->append(STRING_WITH_LEN("(@"));
318
318
  str->append(name.str, name.length);
319
319
  str->append(STRING_WITH_LEN(":="));
320
 
  args[0]->print(str, query_type);
 
320
  args[0]->print(str);
321
321
  str->append(')');
322
322
}
323
323