File: rpl_slave_grp_exec.result

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (134 lines) | stat: -rw-r--r-- 3,306 bytes parent folder | download
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
include/master-slave.inc
Warnings:
Note	####	Sending passwords in plain text without SSL/TLS is extremely insecure.
Note	####	Storing MySQL user name or password information in the connection metadata repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START REPLICA; see the 'START REPLICA Syntax' in the MySQL Manual for more information.
[connection master]

*** Preparing data ***
CREATE TABLE t1 (a INT NOT NULL, b VARCHAR(10)) ENGINE=MyISAM;
CREATE TABLE t2 LIKE t1;
CREATE TABLE t3 LIKE t1;
CREATE TRIGGER tr1 BEFORE UPDATE ON t1
FOR EACH ROW BEGIN
UPDATE t2 SET b='YY' WHERE a=NEW.a;
END|
CREATE TRIGGER tr2 AFTER UPDATE ON t1
FOR EACH ROW BEGIN
UPDATE t3 SET b='ZZ' WHERE a=NEW.a;
END|

*** Test non-transactional group w/o PK ***
INSERT INTO t3 VALUES(1, 'AA');
INSERT INTO t2 VALUES(1, 'AA');
INSERT INTO t1 VALUES(1, 'AA');
include/sync_slave_sql_with_master.inc
RENAME TABLE t3 TO t3_bak;
UPDATE t1 SET b = 'XX' WHERE a = 1;
SELECT * FROM t1 ORDER BY a;
a	b
1	XX
SELECT * FROM t2 ORDER BY a;
a	b
1	YY
SELECT * FROM t3 ORDER BY a;
a	b
1	ZZ
call mtr.add_suppression("Replica SQL.*Table .test.t3. doesn.t exist.*, Error_code: MY-001146");
call mtr.add_suppression("The replica coordinator and worker threads are stopped, possibly leaving data in inconsistent state");
include/wait_for_slave_sql_to_stop.inc
SHOW TABLES LIKE 't%';
Tables_in_test (t%)
t1
t2
t3_bak
SELECT * FROM t1 ORDER BY a;
a	b
1	AA_for_row_or_XX_for_stmt_mixed
SELECT * FROM t2 ORDER BY a;
a	b
1	AA_for_row_or_YY_for_stmt_mixed
include/stop_slave_io.inc
RENAME TABLE t3_bak TO t3;
include/start_slave.inc
TRUNCATE t1;
TRUNCATE t2;
TRUNCATE t3;
include/sync_slave_sql_with_master.inc

*** Test non-transactional group w/ PK ***
ALTER TABLE t1 ADD PRIMARY KEY (a);
ALTER TABLE t2 ADD PRIMARY KEY (a);
ALTER TABLE t3 ADD PRIMARY KEY (a);
include/sync_slave_sql_with_master.inc
RENAME TABLE t3 TO t3_bak;
INSERT INTO t3 VALUES(2, 'B');
INSERT INTO t2 VALUES(2, 'B');
INSERT INTO t1 VALUES(2, 'B');
UPDATE t1 SET b = 'X' WHERE a = 2;
include/wait_for_slave_sql_to_stop.inc
SELECT * FROM t1 ORDER BY a;
a	b
2	X
SELECT * FROM t2 ORDER BY a;
a	b
2	YY
SELECT * FROM t3 ORDER BY a;
a	b
2	ZZ
SHOW TABLES LIKE 't%';
Tables_in_test (t%)
t1
t2
t3_bak
SELECT * FROM t1 ORDER BY a;
a	b
SELECT * FROM t2 ORDER BY a;
a	b
include/stop_slave_io.inc
RENAME TABLE t3_bak TO t3;
include/start_slave.inc
TRUNCATE t1;
TRUNCATE t2;
TRUNCATE t3;
include/sync_slave_sql_with_master.inc

*** Test transactional group w/ PK ***
ALTER TABLE t1 ENGINE=InnoDB;
ALTER TABLE t2 ENGINE=InnoDB;
ALTER TABLE t3 ENGINE=InnoDB;
include/sync_slave_sql_with_master.inc
RENAME TABLE t3 TO t3_bak;
BEGIN;
INSERT INTO t1 VALUES (3, 'C'), (4, 'D');
INSERT INTO t2 VALUES (3, 'C'), (4, 'D');
INSERT INTO t3 VALUES (3, 'C'), (4, 'D');
COMMIT;
include/wait_for_slave_sql_to_stop.inc
SELECT * FROM t1 ORDER BY a;
a	b
3	C
4	D
SELECT * FROM t2 ORDER BY a;
a	b
3	C
4	D
SELECT * FROM t3 ORDER BY a;
a	b
3	C
4	D
SHOW TABLES LIKE 't%';
Tables_in_test (t%)
t1
t2
t3_bak
SELECT * FROM t1 ORDER BY a;
a	b
SELECT * FROM t2 ORDER BY a;
a	b
include/stop_slave_io.inc
RENAME TABLE t3_bak TO t3;
include/start_slave.inc
*** Clean up ***
DROP TABLE t1,t2,t3;
include/sync_slave_sql_with_master.inc
include/rpl_end.inc