~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/charset-def.cc

Reverted 1103

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
 
 
16
 
#include "config.h"
17
 
#include "drizzled/charset.h"
18
 
#include "drizzled/charset_info.h"
19
 
 
20
 
namespace drizzled
21
 
{
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
15
 
 
16
#include "mysys/mysys_priv.h"
22
17
 
23
18
/*
24
19
  Include all compiled character sets into the client
49
44
 
50
45
bool init_compiled_charsets(myf)
51
46
{
 
47
  CHARSET_INFO *cs;
 
48
 
52
49
  add_compiled_collation(&my_charset_bin);
53
50
 
54
51
  add_compiled_collation(&my_charset_utf8mb4_general_ci);
74
71
  add_compiled_collation(&my_charset_utf8mb4_hungarian_uca_ci);
75
72
  add_compiled_collation(&my_charset_utf8mb4_sinhala_uca_ci);
76
73
 
 
74
  /* Copy compiled charsets */
 
75
  for (cs=compiled_charsets; cs->name; cs++)
 
76
    add_compiled_collation(cs);
 
77
 
77
78
  return false;
78
79
}
79
 
 
80
 
} /* namespace drizzled */