mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
Additional fix for bug 25815 for test results when running with
--binlog-format=row
This commit is contained in:
parent
b81d6b8f66
commit
faf05bf314
1 changed files with 12 additions and 0 deletions
|
@ -11353,3 +11353,15 @@ a
|
|||
a
|
||||
a
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue