summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/MW-258.result
blob: 1b4d4ae0de89bdb55a238bf84957465af8f3128c (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
CREATE TABLE t1 (f1 INTEGER);
LOCK TABLE t1 WRITE;
value prior to RSU:
SHOW STATUS LIKE 'wsrep_desync_count';
Variable_name	Value
wsrep_desync_count	0
SHOW VARIABLES LIKE 'wsrep_desync';
Variable_name	Value
wsrep_desync	OFF
SET SESSION wsrep_sync_wait = 0;
SET SESSION wsrep_osu_method = RSU;
ALTER TABLE t1 ADD COLUMN f2 INTEGER;;
SET SESSION wsrep_sync_wait = 0;
SET SESSION wsrep_osu_method = RSU;
ALTER TABLE t1 ADD COLUMN f3 INTEGER;;
value during RSU:
SHOW STATUS LIKE 'wsrep_desync_count';
Variable_name	Value
wsrep_desync_count	2
SHOW VARIABLES LIKE 'wsrep_desync';
Variable_name	Value
wsrep_desync	OFF
UNLOCK TABLES;
value after RSU:
SHOW STATUS LIKE 'wsrep_desync_count';
Variable_name	Value
wsrep_desync_count	0
SHOW VARIABLES LIKE 'wsrep_desync';
Variable_name	Value
wsrep_desync	OFF
SET GLOBAL wsrep_desync=0;
Warnings:
Warning	1231	'wsrep_desync' is already OFF.
DROP TABLE t1;