~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/set_user_var.cc

  • Committer: Mark Atwood
  • Date: 2011-10-08 04:50:51 UTC
  • mfrom: (2430.1.1 rf)
  • Revision ID: me@mark.atwood.name-20111008045051-6ha1qiy7k2a9c3jv
Tags: 2011.10.27
mergeĀ lp:~olafvdspek/drizzle/refactor2

Show diffs side-by-side

added added

removed removed

Lines of Context:
307
307
void Item_func_set_user_var::print(String *str)
308
308
{
309
309
  str->append(STRING_WITH_LEN("(@"));
310
 
  str->append(name.str, name.length);
 
310
  str->append(name);
311
311
  str->append(STRING_WITH_LEN(":="));
312
312
  args[0]->print(str);
313
313
  str->append(')');