~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_string.h

  • Committer: Brian Aker
  • Date: 2009-01-17 02:46:52 UTC
  • Revision ID: brian@gir-3.local-20090117024652-4ducefje08ajbs1q
Refactor append_identifier and remove dead OPTION_QUOTE_SHOW_CREATE option
(we always quote).

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
  uint32_t str_length,Alloced_length;
69
69
  bool alloced;
70
70
  const CHARSET_INFO *str_charset;
 
71
 
71
72
public:
72
73
  String()
73
74
  {
139
140
      (void) realloc(str_length);
140
141
    return Ptr;
141
142
  }
 
143
  void append_identifier(const char *name, uint32_t length);
142
144
 
143
145
  void set(String &str,uint32_t offset,uint32_t arg_length)
144
146
  {