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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
9c642e5b
Commit
9c642e5b
authored
Apr 06, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge sgluhov@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/home/gluh/MySQL/Bugs/mysql-4.1.9286
parents
ddd9fd89
3683fc34
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
sql/field.cc
sql/field.cc
+4
-4
strings/ctype-mb.c
strings/ctype-mb.c
+1
-1
No files found.
sql/field.cc
View file @
9c642e5b
...
...
@@ -4914,7 +4914,7 @@ void Field_datetime::sql_type(String &res) const
int
Field_string
::
store
(
const
char
*
from
,
uint
length
,
CHARSET_INFO
*
cs
)
{
int
error
=
0
;
int
error
=
0
,
well_formed_error
;
uint32
not_used
;
char
buff
[
80
];
String
tmpstr
(
buff
,
sizeof
(
buff
),
&
my_charset_bin
);
...
...
@@ -4942,7 +4942,7 @@ int Field_string::store(const char *from,uint length,CHARSET_INFO *cs)
from
,
from
+
length
,
field_length
/
field_charset
->
mbmaxlen
,
&
error
);
&
well_formed_
error
);
memcpy
(
ptr
,
from
,
copy_length
);
if
(
copy_length
<
field_length
)
// Append spaces if shorter
field_charset
->
cset
->
fill
(
field_charset
,
ptr
+
copy_length
,
...
...
@@ -5545,7 +5545,7 @@ void Field_blob::put_length(char *pos, uint32 length)
int
Field_blob
::
store
(
const
char
*
from
,
uint
length
,
CHARSET_INFO
*
cs
)
{
int
error
=
0
;
int
error
=
0
,
well_formed_error
;
if
(
!
length
)
{
bzero
(
ptr
,
Field_blob
::
pack_length
());
...
...
@@ -5580,7 +5580,7 @@ int Field_blob::store(const char *from,uint length,CHARSET_INFO *cs)
from
,
from
+
min
(
length
,
copy_length
),
copy_length
,
&
error
);
&
well_formed_
error
);
if
(
copy_length
<
length
)
error
=
1
;
Field_blob
::
store_length
(
copy_length
);
...
...
strings/ctype-mb.c
View file @
9c642e5b
...
...
@@ -276,7 +276,7 @@ uint my_well_formed_len_mb(CHARSET_INFO *cs, const char *b, const char *e,
if
((
mblen
=
cs
->
cset
->
mb_wc
(
cs
,
&
wc
,
(
uchar
*
)
b
,
(
uchar
*
)
e
))
<=
0
)
{
*
error
=
1
;
*
error
=
b
<
e
?
1
:
0
;
break
;
}
b
+=
mblen
;
...
...
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