summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/galera_mdev_10812.result
blob: 16eacc6beab235b584760b081b2960fa6503d7a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
connection node_2;
connection node_1;
#
# MDEV-10812: On COM_STMT_CLOSE/COM_QUIT, when wsrep_conflict_state
# is ABORTED, it causes wrong response to be sent to the client
#
connect node_1a, 127.0.0.1, root, , test, $NODE_MYPORT_1;
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;
CREATE TABLE t1(a INT PRIMARY KEY);
INSERT INTO t1 VALUES(1),(2),(3);
START TRANSACTION ;
UPDATE t1 SET a=a+100;
connection node_2;
UPDATE t1 SET a=a+100;
connection node_1a;
disconnect node_1a;
connection node_2;
DROP TABLE t1;