Additional fix for bug 25815 for test results when running with

--binlog-format=row
This commit is contained in:
bar@mysql.com 2007-02-01 10:11:45 +04:00
parent b81d6b8f66
commit faf05bf314

View file

@ -11353,3 +11353,15 @@ a
a a
a a
drop table t1; drop table t1;
set names utf8;
create table t1 (a text) default character set cp932;
insert into t1 values (_utf8 0xE38182);
show warnings;
Level Code Message
select * from t1;
a
select hex(a) from t1;
hex(a)
82A0
drop table t1;