~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/empty_string.h

mergeĀ fromĀ lp

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
  Item_empty_string(const char *header,uint32_t length, const CHARSET_INFO * cs= NULL) :
35
35
    Item_string("",0, cs ? cs : &my_charset_utf8_general_ci)
36
36
    { name=(char*) header; max_length= cs ? length * cs->mbmaxlen : length; }
37
 
  void make_field(Send_field *field);
 
37
  void make_field(SendField *field);
38
38
};
39
39
  
40
40
#endif /* DRIZZLED_ITEM_EMPTRY_STRING_H */