~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/charset-def.cc

  • Committer: Monty Taylor
  • Date: 2009-12-04 20:51:25 UTC
  • mfrom: (1237.2.9 push)
  • mto: (1238.1.6 push)
  • mto: This revision was merged to the branch mainline in revision 1240.
  • Revision ID: mordred@inaugust.com-20091204205125-7s6a0l0v5vqzvalo
MergedĀ build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
 
45
45
bool init_compiled_charsets(myf)
46
46
{
47
 
  CHARSET_INFO *cs;
48
 
 
49
47
  add_compiled_collation(&my_charset_bin);
50
48
 
51
49
  add_compiled_collation(&my_charset_utf8mb4_general_ci);
71
69
  add_compiled_collation(&my_charset_utf8mb4_hungarian_uca_ci);
72
70
  add_compiled_collation(&my_charset_utf8mb4_sinhala_uca_ci);
73
71
 
74
 
  /* Copy compiled charsets */
75
 
  for (cs=compiled_charsets; cs->name; cs++)
76
 
    add_compiled_collation(cs);
77
 
 
78
72
  return false;
79
73
}