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
e7227bb0
Commit
e7227bb0
authored
Mar 03, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysqldev@production.mysql.com:my/mysql-5.0-release
into mysql.com:/Users/kent/mysql/bk/mysql-5.0-release
parents
a74939e2
25b3bb8b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
48 additions
and
1 deletion
+48
-1
mysql-test/r/binary.result
mysql-test/r/binary.result
+19
-0
mysql-test/t/binary.test
mysql-test/t/binary.test
+12
-0
sql/field_conv.cc
sql/field_conv.cc
+17
-1
No files found.
mysql-test/r/binary.result
View file @
e7227bb0
...
@@ -141,3 +141,22 @@ t1 CREATE TABLE `t1` (
...
@@ -141,3 +141,22 @@ t1 CREATE TABLE `t1` (
`a` binary(1) default NULL
`a` binary(1) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop table t1;
drop table t1;
create table t1 (col1 binary(4));
insert into t1 values ('a'),('a ');
select hex(col1) from t1;
hex(col1)
61000000
61200000
alter table t1 modify col1 binary(10);
select hex(col1) from t1;
hex(col1)
61000000000000000000
61200000000000000000
insert into t1 values ('b'),('b ');
select hex(col1) from t1;
hex(col1)
61000000000000000000
61200000000000000000
62000000000000000000
62200000000000000000
drop table t1;
mysql-test/t/binary.test
View file @
e7227bb0
...
@@ -89,3 +89,15 @@ show create table t1;
...
@@ -89,3 +89,15 @@ show create table t1;
drop
table
t1
;
drop
table
t1
;
# End of 4.1 tests
# End of 4.1 tests
#
# Bug#16857
#
create
table
t1
(
col1
binary
(
4
));
insert
into
t1
values
(
'a'
),(
'a '
);
select
hex
(
col1
)
from
t1
;
alter
table
t1
modify
col1
binary
(
10
);
select
hex
(
col1
)
from
t1
;
insert
into
t1
values
(
'b'
),(
'b '
);
select
hex
(
col1
)
from
t1
;
drop
table
t1
;
sql/field_conv.cc
View file @
e7227bb0
...
@@ -379,6 +379,16 @@ static void do_cut_string_complex(Copy_field *copy)
...
@@ -379,6 +379,16 @@ static void do_cut_string_complex(Copy_field *copy)
static
void
do_expand_binary
(
Copy_field
*
copy
)
{
CHARSET_INFO
*
cs
=
copy
->
from_field
->
charset
();
memcpy
(
copy
->
to_ptr
,
copy
->
from_ptr
,
copy
->
from_length
);
cs
->
cset
->
fill
(
cs
,
copy
->
to_ptr
+
copy
->
from_length
,
copy
->
to_length
-
copy
->
from_length
,
'\0'
);
}
static
void
do_expand_string
(
Copy_field
*
copy
)
static
void
do_expand_string
(
Copy_field
*
copy
)
{
{
CHARSET_INFO
*
cs
=
copy
->
from_field
->
charset
();
CHARSET_INFO
*
cs
=
copy
->
from_field
->
charset
();
...
@@ -583,8 +593,14 @@ void (*Copy_field::get_copy_func(Field *to,Field *from))(Copy_field*)
...
@@ -583,8 +593,14 @@ void (*Copy_field::get_copy_func(Field *to,Field *from))(Copy_field*)
return
(
from
->
charset
()
->
mbmaxlen
==
1
?
return
(
from
->
charset
()
->
mbmaxlen
==
1
?
do_cut_string
:
do_cut_string_complex
);
do_cut_string
:
do_cut_string_complex
);
else
if
(
to_length
>
from_length
)
else
if
(
to_length
>
from_length
)
{
if
((
to
->
flags
&
BINARY_FLAG
)
!=
0
)
return
do_expand_binary
;
else
return
do_expand_string
;
return
do_expand_string
;
}
}
}
else
if
(
to
->
real_type
()
!=
from
->
real_type
()
||
else
if
(
to
->
real_type
()
!=
from
->
real_type
()
||
to_length
!=
from_length
||
to_length
!=
from_length
||
!
compatible_db_low_byte_first
)
!
compatible_db_low_byte_first
)
...
...
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