~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/float.h

fixes for the installing from source doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
  Item *clone_item()
57
57
  { return new Item_float(name, value, decimals, max_length); }
58
58
  Item_num *neg() { value= -value; return this; }
59
 
  virtual void print(String *str, enum_query_type query_type);
 
59
  virtual void print(String *str);
60
60
  bool eq(const Item *, bool binary_cmp) const;
61
61
};
62
62
 
69
69
    :Item_float(NULL, val_arg, decimal_par, length), func_name(str)
70
70
  {}
71
71
 
72
 
  virtual inline void print(String *str, enum_query_type)
 
72
  virtual inline void print(String *str)
73
73
  {
74
74
    str->append(func_name);
75
75
  }