~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/math/int_divide.h

fixes for the installing from source doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
  const char *func_name() const { return "DIV"; }
36
36
  void fix_length_and_dec();
37
37
 
38
 
  virtual inline void print(String *str, enum_query_type query_type)
 
38
  virtual inline void print(String *str)
39
39
  {
40
 
    print_op(str, query_type);
 
40
    print_op(str);
41
41
  }
42
42
 
43
43
};