1
by brian
clean slate |
1 |
/*
|
2 |
This file was generated by the conf_to_src utility. Do not edit it directly,
|
|
3 |
edit the XML definitions in sql/share/charsets/ instead.
|
|
4 |
||
5 |
To re-generate, run the following in the strings/ directory:
|
|
6 |
./conf_to_src ../sql/share/charsets/ > FILE
|
|
7 |
*/
|
|
8 |
||
9 |
/* Copyright (C) 2000-2007 MySQL AB
|
|
10 |
||
11 |
This program is free software; you can redistribute it and/or modify
|
|
12 |
it under the terms of the GNU General Public License as published by
|
|
13 |
the Free Software Foundation; version 2 of the License.
|
|
14 |
||
15 |
This program is distributed in the hope that it will be useful,
|
|
16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
18 |
GNU General Public License for more details.
|
|
19 |
||
20 |
You should have received a copy of the GNU General Public License
|
|
21 |
along with this program; if not, write to the Free Software
|
|
22 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
|
|
23 |
||
685.1.3
by Monty Taylor
Turned off stdinc - and then fixed the carnage. |
24 |
#include "m_string.h" |
25 |
#include "m_ctype.h" |
|
1
by brian
clean slate |
26 |
|
27 |
||
28 |
CHARSET_INFO compiled_charsets[] = { |
|
29 |
{
|
|
30 |
0,0,0, |
|
31 |
MY_CS_COMPILED, |
|
32 |
NULL, /* cset name */ |
|
33 |
NULL, /* coll name */ |
|
34 |
NULL, /* comment */ |
|
35 |
NULL, /* tailoging */ |
|
36 |
NULL, /* ctype */ |
|
37 |
NULL, /* lower */ |
|
38 |
NULL, /* upper */ |
|
39 |
NULL, /* sort order */ |
|
40 |
NULL, /* contractions */ |
|
41 |
NULL, /* sort_order_big*/ |
|
42 |
NULL, /* to_uni */ |
|
43 |
NULL, /* from_uni */ |
|
44 |
my_unicase_default, /* caseinfo */ |
|
45 |
NULL, /* state map */ |
|
46 |
NULL, /* ident map */ |
|
47 |
1, /* strxfrm_multiply*/ |
|
48 |
1, /* caseup_multiply*/ |
|
49 |
1, /* casedn_multiply*/ |
|
50 |
1, /* mbminlen */ |
|
51 |
1, /* mbmaxlen */ |
|
52 |
0, /* min_sort_char */ |
|
53 |
255, /* max_sort_char */ |
|
54 |
' ', /* pad_char */ |
|
55 |
0, /* escape_with_backslash_is_dangerous */ |
|
56 |
1, /* levels_for_compare */ |
|
57 |
1, /* levels_for_order */ |
|
58 |
&my_charset_8bit_handler, |
|
59 |
&my_collation_8bit_simple_ci_handler, |
|
60 |
}
|
|
61 |
};
|