mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 17:33:44 +01:00
097566d61c
checks that can skip the test
22 lines
643 B
Text
22 lines
643 B
Text
#############################################################
|
|
# Purpose: Test for BUG#37426
|
|
# RBR breaks for CHAR() UTF8 fields > 85 chars
|
|
#############################################################
|
|
|
|
source include/have_binlog_format_row.inc;
|
|
source include/master-slave.inc;
|
|
|
|
connection master;
|
|
CREATE TABLE char128_utf8 (i1 INT NOT NULL, c CHAR(128) CHARACTER SET utf8 NOT NULL, i2 INT NOT NULL);
|
|
INSERT INTO char128_utf8 VALUES ( 1, "123", 1 );
|
|
|
|
SELECT * FROM char128_utf8;
|
|
sync_slave_with_master;
|
|
|
|
SELECT * FROM char128_utf8;
|
|
|
|
# Clean up
|
|
connection master;
|
|
DROP TABLE char128_utf8;
|
|
sync_slave_with_master;
|
|
--source include/rpl_end.inc
|