summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera_sr/r/galera_sr_ws_size2.result
blob: 6bd8b6b8212d242bced13d00965daa0d3789324c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
connection node_2;
connection node_1;
connection node_1;
CREATE TABLE t1 (f1 INTEGER AUTO_INCREMENT PRIMARY KEY, f2 VARCHAR(254)) ENGINE=InnoDB;
CREATE TABLE ten (f1 INTEGER);
INSERT INTO ten VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10);
SET SESSION wsrep_trx_fragment_size = 256;
SET GLOBAL wsrep_provider_options='repl.max_ws_size=128';
SET AUTOCOMMIT=OFF;
START TRANSACTION;
INSERT INTO t1 (f2) SELECT REPEAT('x', 254) FROM ten AS a1, ten AS a2;
Got one of the listed errors
connection node_2;
SET SESSION TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
SELECT COUNT(*) = 0 FROM t1;
COUNT(*) = 0
1
connection node_2;
SET SESSION TRANSACTION ISOLATION LEVEL REPEATABLE READ;
SELECT COUNT(*) = 0 FROM t1;
COUNT(*) = 0
1
connection node_1;
DROP TABLE t1;
DROP TABLE ten;
call mtr.add_suppression('WSREP: SR rollback replication failure.*');
call mtr.add_suppression('WSREP: transaction size limit.*');
call mtr.add_suppression('WSREP: SR rbr write fail.*');
call mtr.add_suppression('WSREP: Maximum writeset size exceeded by.*');
call mtr.add_suppression('WSREP: transaction size exceeded.*');
call mtr.add_suppression('WSREP: fragment replication failed:');
call mtr.add_suppression('WSREP: post commit failed for SR rollback');
call mtr.add_suppression('WSREP: pre_commit for SR rollback returned 2, thd:*');
call mtr.add_suppression('WSREP: wsrep_rollback failed to send SR ROLLBACK for *');