~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/dtcollation.h

merge latest from trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
public:
33
33
  const CHARSET_INFO *collation;
34
34
  enum Derivation derivation;
35
 
  uint32_t repertoire;
36
 
 
37
 
  void set_repertoire_from_charset(const CHARSET_INFO * const cs);
38
35
 
39
36
  DTCollation();
40
37
  DTCollation(const CHARSET_INFO * const collation_arg,
42
39
  void set(DTCollation &dt);
43
40
  void set(const CHARSET_INFO * const collation_arg,
44
41
           Derivation derivation_arg);
45
 
  void set(const CHARSET_INFO * const collation_arg,
46
 
           Derivation derivation_arg,
47
 
           uint32_t repertoire_arg);
48
42
  void set(const CHARSET_INFO * const collation_arg);
49
43
  void set(Derivation derivation_arg);
50
44
  bool set(DTCollation &dt1, DTCollation &dt2, uint32_t flags= 0);