summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/galera_repl_max_ws_size.result
blob: da24a741351aa59d1fe19bced88ab1a0c1223686 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
connection node_1;
CREATE TABLE t1 (f1 VARCHAR(512)) ENGINE=InnoDB;
SET GLOBAL wsrep_provider_options = 'repl.max_ws_size=512';
INSERT INTO t1 VALUES (REPEAT('a', 512));
ERROR HY000: Got error 90 "Message too long" during COMMIT
SELECT COUNT(*) = 0 FROM t1;
COUNT(*) = 0
1
DROP TABLE t1;
CALL mtr.add_suppression("Maximum writeset size exceeded by");
CALL mtr.add_suppression("transaction size limit");
CALL mtr.add_suppression("transaction size exceeded");
CALL mtr.add_suppression("rbr write fail");