~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_string.h

  • Committer: Brian Aker
  • Date: 2009-03-05 07:55:26 UTC
  • mfrom: (910.1.5 drizzle)
  • Revision ID: brian@tangent.org-20090305075526-ua34bjproq6oxujx
Merge of Brian (test extensions, dead code killing)

Show diffs side-by-side

added added

removed removed

Lines of Context:
267
267
  static bool needs_conversion(uint32_t arg_length,
268
268
                               const CHARSET_INFO * const cs_from, const CHARSET_INFO * const cs_to,
269
269
                               uint32_t *offset);
270
 
  bool copy_aligned(const char *s, uint32_t arg_length, uint32_t offset,
271
 
                    const CHARSET_INFO * const cs);
272
270
  bool set_or_copy_aligned(const char *s, uint32_t arg_length, const CHARSET_INFO * const cs);
273
271
  bool copy(const char*s,uint32_t arg_length, const CHARSET_INFO * const csfrom,
274
272
            const CHARSET_INFO * const csto, uint32_t *errors);
297
295
    }
298
296
    return 0;
299
297
  }
300
 
  bool fill(uint32_t max_length,char fill);
301
298
  friend int sortcmp(const String *a,const String *b, const CHARSET_INFO * const cs);
302
299
  friend int stringcmp(const String *a,const String *b);
303
300
  friend String *copy_if_not_alloced(String *a,String *b,uint32_t arg_length);