summaryrefslogtreecommitdiffstats
path: root/storage/rocksdb/mysql-test/rocksdb_rpl/r/rpl_gtid_crash_safe_wal_corrupt.result
blob: e765e338cb5bcba56b74ea1fde4d1dbcc6a2cefa (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
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
135
136
137
138
139
140
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 master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
[connection master]
drop table if exists x;
select @@binlog_format;
@@binlog_format
ROW
create table x (id int primary key, value int, value2 int, index(value)) engine=rocksdb;
insert into x values (1,1,1);
insert into x values (2,1,1);
insert into x values (3,1,1);
insert into x values (4,1,1);
insert into x values (5,1,1);
select @@global.gtid_executed;
@@global.gtid_executed
uuid:1-7

--- slave state before crash ---
select * from x;
id	value	value2
1	1	1
2	1	1
3	1	1
4	1	1
5	1	1
select @@global.gtid_executed;
@@global.gtid_executed
uuid:1-7
select * from mysql.slave_gtid_info;
Id	Database_name	Last_gtid
1	test	uuid:7
include/rpl_start_server.inc [server_number=2]

--- slave state after crash recovery, slave stop, one transaction recovered---
select * from x;
id	value	value2
1	1	1
2	1	1
3	1	1
4	1	1
select @@global.gtid_executed;
@@global.gtid_executed
uuid:1-6
select * from mysql.slave_gtid_info;
Id	Database_name	Last_gtid
1	test	uuid:6

--- slave state after restart, slave start ---
include/start_slave.inc
select * from x;
id	value	value2
1	1	1
2	1	1
3	1	1
4	1	1
5	1	1
select @@global.gtid_executed;
@@global.gtid_executed
uuid:1-7
select * from mysql.slave_gtid_info;
Id	Database_name	Last_gtid
1	test	uuid:7
insert into x values (6,1,1);
select * from x;
id	value	value2
1	1	1
2	1	1
3	1	1
4	1	1
5	1	1
6	1	1
select @@global.gtid_executed;
@@global.gtid_executed
uuid:1-8
select * from mysql.slave_gtid_info;
Id	Database_name	Last_gtid
1	test	uuid:8
insert into x values (7,1,1);
insert into x values (8,1,1);
insert into x values (9,1,1);
insert into x values (10,1,1);
insert into x values (11,1,1);
insert into x values (12,1,1);
select * from x;
id	value	value2
1	1	1
2	1	1
3	1	1
4	1	1
5	1	1
6	1	1
7	1	1
8	1	1
9	1	1
10	1	1
11	1	1
12	1	1
select @@global.gtid_executed;
@@global.gtid_executed
uuid:1-14
include/rpl_start_server.inc [server_number=2]

--- slave state after crash recovery, slave stop, WAL was corrupted, point in time recovery with wal_recovery_mode=2 ---
select * from x;
id	value	value2
1	1	1
2	1	1
3	1	1
4	1	1
5	1	1
6	1	1
7	1	1
8	1	1
9	1	1
include/start_slave.inc
select * from x;
id	value	value2
1	1	1
2	1	1
3	1	1
4	1	1
5	1	1
6	1	1
7	1	1
8	1	1
9	1	1
10	1	1
11	1	1
12	1	1
select @@global.gtid_executed;
@@global.gtid_executed
uuid:1-14
select * from mysql.slave_gtid_info;
Id	Database_name	Last_gtid
1	test	uuid:14
drop table x;
include/rpl_end.inc
Binlog Info Found