Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
d590331d
Commit
d590331d
authored
Apr 05, 2006
by
bar@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/usr/home/bar/mysql-5.0
into mysql.com:/usr/home/bar/mysql-5.1-new
parents
368b9239
52220d2d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
68 additions
and
1 deletion
+68
-1
strings/conf_to_src.c
strings/conf_to_src.c
+2
-1
strings/ctype-extra.c
strings/ctype-extra.c
+66
-0
No files found.
strings/conf_to_src.c
View file @
d590331d
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
#define ROW_LEN 16
#define ROW_LEN 16
#define ROW16_LEN 8
#define ROW16_LEN 8
#define MAX_BUF
16
*1024
#define MAX_BUF
64
*1024
static
CHARSET_INFO
all_charsets
[
256
];
static
CHARSET_INFO
all_charsets
[
256
];
...
@@ -156,6 +156,7 @@ static int my_read_charset_file(const char *filename)
...
@@ -156,6 +156,7 @@ static int my_read_charset_file(const char *filename)
}
}
len
=
read
(
fd
,
buf
,
MAX_BUF
);
len
=
read
(
fd
,
buf
,
MAX_BUF
);
DBUG_ASSERT
(
len
<
MAX_BUF
);
close
(
fd
);
close
(
fd
);
if
(
my_parse_charset_xml
(
buf
,
len
,
add_collation
))
if
(
my_parse_charset_xml
(
buf
,
len
,
add_collation
))
...
...
strings/ctype-extra.c
View file @
d590331d
...
@@ -8527,6 +8527,72 @@ CHARSET_INFO compiled_charsets[] = {
...
@@ -8527,6 +8527,72 @@ CHARSET_INFO compiled_charsets[] = {
}
}
,
,
#endif
#endif
#ifdef HAVE_CHARSET_geostd8
{
92
,
0
,
0
,
MY_CS_COMPILED
|
MY_CS_PRIMARY
,
"geostd8"
,
/* cset name */
"geostd8_general_ci"
,
/* coll name */
""
,
/* comment */
NULL
,
/* tailoring */
ctype_geostd8_general_ci
,
/* ctype */
to_lower_geostd8_general_ci
,
/* lower */
to_upper_geostd8_general_ci
,
/* upper */
sort_order_geostd8_general_ci
,
/* sort_order */
NULL
,
/* contractions */
NULL
,
/* sort_order_big*/
to_uni_geostd8_general_ci
,
/* to_uni */
NULL
,
/* from_uni */
my_unicase_default
,
/* caseinfo */
NULL
,
/* state map */
NULL
,
/* ident map */
1
,
/* strxfrm_multiply*/
1
,
/* caseup_multiply*/
1
,
/* casedn_multiply*/
1
,
/* mbminlen */
1
,
/* mbmaxlen */
0
,
/* min_sort_char */
255
,
/* max_sort_char */
' '
,
/* pad_char */
0
,
/* escape_with_backslash_is_dangerous */
&
my_charset_8bit_handler
,
&
my_collation_8bit_simple_ci_handler
,
}
,
#endif
#ifdef HAVE_CHARSET_geostd8
{
93
,
0
,
0
,
MY_CS_COMPILED
|
MY_CS_BINSORT
,
"geostd8"
,
/* cset name */
"geostd8_bin"
,
/* coll name */
""
,
/* comment */
NULL
,
/* tailoring */
ctype_geostd8_bin
,
/* ctype */
to_lower_geostd8_bin
,
/* lower */
to_upper_geostd8_bin
,
/* upper */
NULL
,
/* sort_order */
NULL
,
/* contractions */
NULL
,
/* sort_order_big*/
to_uni_geostd8_bin
,
/* to_uni */
NULL
,
/* from_uni */
my_unicase_default
,
/* caseinfo */
NULL
,
/* state map */
NULL
,
/* ident map */
1
,
/* strxfrm_multiply*/
1
,
/* caseup_multiply*/
1
,
/* casedn_multiply*/
1
,
/* mbminlen */
1
,
/* mbmaxlen */
0
,
/* min_sort_char */
255
,
/* max_sort_char */
' '
,
/* pad_char */
0
,
/* escape_with_backslash_is_dangerous */
&
my_charset_8bit_handler
,
&
my_collation_8bit_bin_handler
,
}
,
#endif
#ifdef HAVE_CHARSET_latin1
#ifdef HAVE_CHARSET_latin1
{
{
94
,
0
,
0
,
94
,
0
,
0
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment