~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_string.h

  • Committer: Mark Atwood
  • Date: 2011-08-11 03:05:03 UTC
  • mfrom: (2385.1.12 refactor4)
  • Revision ID: me@mark.atwood.name-20110811030503-rp9xjihc5x3y0x4q
mergeĀ lp:~olafvdspek/drizzle/refactor4

Show diffs side-by-side

added added

removed removed

Lines of Context:
251
251
  static bool needs_conversion(size_t arg_length, const charset_info_st* cs_from, const charset_info_st* cs_to);
252
252
  void set_or_copy_aligned(const char *s, size_t arg_length, const charset_info_st*);
253
253
  void copy(const char*s,size_t arg_length, const charset_info_st& csto);
254
 
  void append(const String &s);
255
 
  void append(const char *s);
256
 
  void append(const char *s,size_t arg_length);
 
254
  void append(const char*);
 
255
  void append(const char*, size_t);
 
256
  void append(str_ref);
257
257
  void append_with_prefill(const char *s, size_t arg_length, size_t full_length, char fill_char);
258
258
  int strstr(const String &search,size_t offset=0); // Returns offset to substring or -1
259
259
  int strrstr(const String &search,size_t offset=0); // Returns offset to substring or -1