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
f99ada85
Commit
f99ada85
authored
Aug 19, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#5081: UCS2 fields are filled with '0x2020' after extending field length
parent
fa03e7c8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
1 deletion
+24
-1
mysql-test/r/ctype_ucs.result
mysql-test/r/ctype_ucs.result
+10
-0
mysql-test/t/ctype_ucs.test
mysql-test/t/ctype_ucs.test
+11
-0
sql/field_conv.cc
sql/field_conv.cc
+3
-1
No files found.
mysql-test/r/ctype_ucs.result
View file @
f99ada85
...
...
@@ -470,3 +470,13 @@ select s1 from t1 where s1 > 'a' order by s1;
s1
b
c
drop table t1;
create table t1(a char(1)) default charset = ucs2;
insert into t1 values ('a'),('b'),('c');
alter table t1 modify a char(5);
select a, hex(a) from t1;
a hex(a)
a 0061
b 0062
c 0063
drop table t1;
mysql-test/t/ctype_ucs.test
View file @
f99ada85
...
...
@@ -303,4 +303,15 @@ DROP TABLE t1;
create
table
t1
(
s1
char
character
set
`ucs2`
collate
`ucs2_czech_ci`
);
insert
into
t1
values
(
'0'
),(
'1'
),(
'2'
),(
'a'
),(
'b'
),(
'c'
);
select
s1
from
t1
where
s1
>
'a'
order
by
s1
;
drop
table
t1
;
#
# Bug #5081 : UCS2 fields are filled with '0x2020'
# after extending field length
#
create
table
t1
(
a
char
(
1
))
default
charset
=
ucs2
;
insert
into
t1
values
(
'a'
),(
'b'
),(
'c'
);
alter
table
t1
modify
a
char
(
5
);
select
a
,
hex
(
a
)
from
t1
;
drop
table
t1
;
sql/field_conv.cc
View file @
f99ada85
...
...
@@ -340,8 +340,10 @@ static void do_cut_string(Copy_field *copy)
static
void
do_expand_string
(
Copy_field
*
copy
)
{
CHARSET_INFO
*
cs
=
copy
->
from_field
->
charset
();
memcpy
(
copy
->
to_ptr
,
copy
->
from_ptr
,
copy
->
from_length
);
bfill
(
copy
->
to_ptr
+
copy
->
from_length
,
copy
->
to_length
-
copy
->
from_length
,
' '
);
cs
->
cset
->
fill
(
cs
,
copy
->
to_ptr
+
copy
->
from_length
,
copy
->
to_length
-
copy
->
from_length
,
' '
);
}
static
void
do_varstring
(
Copy_field
*
copy
)
...
...
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