~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.h

  • Committer: Monty Taylor
  • Date: 2010-02-25 05:06:21 UTC
  • mfrom: (1308 staging)
  • mto: This revision was merged to the branch mainline in revision 1311.
  • Revision ID: mordred@inaugust.com-20100225050621-1vmy8ryyo4s58vsf
Merged trunk.

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
   *