summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/t/galera_binlog_event_max_size_min.test
blob: 00b55339770dee357d32339ceef945f738d96bda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#
# Test that replication works event with the minimum value of binlog-row-event-max-size - 256
#

--source include/galera_cluster.inc
--source include/have_innodb.inc

CREATE TABLE t1 (f1 VARCHAR(1000));
INSERT INTO t1 VALUES (REPEAT('x', 1000));

--connection node_2
SELECT COUNT(*) = 1 FROM t1 WHERE f1 = REPEAT('x', 1000);

DROP TABLE t1;