~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.h

Merged embedded-innodb-write-row into embedded-innodb-rnd-read.

Show diffs side-by-side

added added

removed removed

Lines of Context:
183
183
    name=0;
184
184
#endif
185
185
  }
186
 
  void set_name(const char *str, uint32_t length, const CHARSET_INFO * const cs);
 
186
 
 
187
  void set_name(const std::string &arg)
 
188
  {
 
189
    set_name(arg.c_str(), arg.length(), system_charset_info);
 
190
  }
 
191
 
 
192
  void set_name(const char *str, uint32_t length, const CHARSET_INFO * const cs= system_charset_info);
187
193
  /**
188
194
   * Renames item (used for views, cleanup() return original name).
189
195
   *