summaryrefslogtreecommitdiff
path: root/mysql-test/r/binary.result
diff options
context:
space:
mode:
authorunknown <cmiller@zippy.(none)>2006-03-02 19:59:49 -0500
committerunknown <cmiller@zippy.(none)>2006-03-02 19:59:49 -0500
commite2ba74b8252586bd27ace8603aab33c76b2b50cd (patch)
tree93057b81d12a646375f9b7997adb21f55fbe55e1 /mysql-test/r/binary.result
parent44c175b7efbdf1c0a6575376698609dc328b7a85 (diff)
downloadmariadb-git-e2ba74b8252586bd27ace8603aab33c76b2b50cd.tar.gz
Expanding a binary field should result in 0x00-filled positions, not 0x20
(ASCII space). For Bug#16857. sql/field_conv.cc: Bug#16857: Do not expand BINARY fields as if they are strings (which presumably /should/ be filled with spaces). Instead, fill BINARY fields with 0x00 bytes.
Diffstat (limited to 'mysql-test/r/binary.result')
-rw-r--r--mysql-test/r/binary.result19
1 files changed, 19 insertions, 0 deletions
diff --git a/mysql-test/r/binary.result b/mysql-test/r/binary.result
index a8d6c3bf411..c5673d1c00d 100644
--- a/mysql-test/r/binary.result
+++ b/mysql-test/r/binary.result
@@ -141,3 +141,22 @@ t1 CREATE TABLE `t1` (
`a` binary(1) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
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;