~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/default_value.cc

fixes for the installing from source doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
}
79
79
 
80
80
 
81
 
void Item_default_value::print(String *str, enum_query_type query_type)
 
81
void Item_default_value::print(String *str)
82
82
{
83
83
  if (!arg)
84
84
  {
86
86
    return;
87
87
  }
88
88
  str->append(STRING_WITH_LEN("default("));
89
 
  arg->print(str, query_type);
 
89
  arg->print(str);
90
90
  str->append(')');
91
91
}
92
92