~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/int.h

fixes for the installing from source doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
 
70
70
  Item *clone_item() { return new Item_int(name,value,max_length); }
71
71
 
72
 
  virtual void print(String *str, enum_query_type query_type);
 
72
  virtual void print(String *str);
73
73
 
74
74
  Item_num *neg() { value= -value; return this; }
75
75