~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.h

  • Committer: Mark Atwood
  • Date: 2011-08-04 16:21:21 UTC
  • mfrom: (2318.9.14 refactor3)
  • Revision ID: me@mark.atwood.name-20110804162121-6b9ay1b1de3yfgvl
mergeĀ lp:~olafvdspek/drizzle/refactor3

Show diffs side-by-side

added added

removed removed

Lines of Context:
170
170
 
171
171
  virtual ~Item()
172
172
  {
173
 
#ifdef EXTRA_DEBUG
174
 
    name= NULL;
175
 
#endif
176
173
  }
177
174
 
178
175
  void set_name(const std::string &arg)
179
176
  {
180
 
    set_name(arg.c_str(), arg.length(), system_charset_info);
 
177
    set_name(arg.c_str(), arg.length());
181
178
  }
182
179
 
183
 
  void set_name(const char *str, uint32_t length, const charset_info_st * const cs= system_charset_info);
 
180
  void set_name(const char *str, uint32_t length, const charset_info_st* cs= system_charset_info);
184
181
  void init_make_field(SendField *tmp_field,enum enum_field_types type);
185
182
  virtual void cleanup();
186
183
  virtual void make_field(SendField *field);