mariadb/mysql-test/suite/binlog_encryption/rpl_special_charset.result
2017-02-10 17:01:45 +01:00

10 lines
304 B
Text

include/master-slave.inc
[connection master]
call mtr.add_suppression("'utf16' can not be used as client character set");
CREATE TABLE t1(i VARCHAR(20));
INSERT INTO t1 VALUES (0xFFFF);
connection slave;
include/diff_tables.inc [master:t1, slave:t1]
connection master;
DROP TABLE t1;
include/rpl_end.inc