~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/dtcollation.h

  • Committer: Brian Aker
  • Date: 2009-05-15 19:17:03 UTC
  • mto: This revision was merged to the branch mainline in revision 1023.
  • Revision ID: brian@gaz-20090515191703-bhfoodfaenh6gp9z
Force UTF8 (remove the bits for looking for ascii).

This is a reverse of commit 31951 from MySQL.

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);