mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
611f91605a
- created binlog_encryption test suite and added it to the default list - moved some tests from rpl, binlog and multisource suites to extra so that they could be re-used in different suites - made minor changes in include files
8 lines
260 B
Text
8 lines
260 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
call mtr.add_suppression("Cannot use utf16 as character_set_client");
|
|
CREATE TABLE t1(i VARCHAR(20));
|
|
INSERT INTO t1 VALUES (0xFFFF);
|
|
include/diff_tables.inc [master:t1, slave:t1]
|
|
DROP TABLE t1;
|
|
include/rpl_end.inc
|