~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/time/extract.cc

fixes for the installing from source doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
 
36
36
extern const char *interval_names[];
37
37
 
38
 
void Item_extract::print(String *str, enum_query_type query_type)
 
38
void Item_extract::print(String *str)
39
39
{
40
40
  str->append(STRING_WITH_LEN("extract("));
41
41
  str->append(interval_names[int_type]);
42
42
  str->append(STRING_WITH_LEN(" from "));
43
 
  args[0]->print(str, query_type);
 
43
  args[0]->print(str);
44
44
  str->append(')');
45
45
}
46
46