~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/insert_value.cc

Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
}
95
95
 
96
96
 
97
 
void Item_insert_value::print(String *str, enum_query_type query_type)
 
97
void Item_insert_value::print(String *str)
98
98
{
99
99
  str->append(STRING_WITH_LEN("values("));
100
 
  arg->print(str, query_type);
 
100
  arg->print(str);
101
101
  str->append(')');
102
102
}
103
103