Skip to content

Commit cb4b980

Browse files
committed
Bug #22980871: UNCLEAR ERROR MESSAGE WHILE USING ENCRYPTION IF
THERE IS A PERMISSION ISSUE Added a better wording for the error message. Test results updated to match the new message.
1 parent ebb57b5 commit cb4b980

File tree

9 files changed

+42
-42
lines changed

9 files changed

+42
-42
lines changed

mysql-test/suite/auth_sec/r/key_rotation_qa.result

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ERROR 42000: You have an error in your SQL syntax; check the manual that corresp
2424
ALTER INSTANCE ROTATE INNODB SLAVE KEY;
2525
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SLAVE KEY' at line 1
2626
ALTER INSTANCE ROTATE INNODB MASTER KEY;
27-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
27+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
2828

2929
INSTALL PLUGIN keyring_file SONAME 'keyring_file.so';
3030
ERROR HY000: Function 'keyring_file' already exists
@@ -70,7 +70,7 @@ INSERT INTO t3 VALUES(2, "ccccc");
7070
keyring_tmp
7171

7272
ALTER INSTANCE ROTATE INNODB MASTER KEY;
73-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
73+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
7474
# Check for keyring file.
7575
keyring_tmp
7676

@@ -103,7 +103,7 @@ c1 c2
103103
2 ccccc
104104
# restart: --early-plugin-load=keyring_file=keyring_file.so --keyring_file_data=MYSQL_TMP_DIR/keyring/keyring_new
105105
SELECT * FROM t1;
106-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
106+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
107107
CREATE TABLE t12(c1 INT, c2 char(20)) ENCRYPTION="Y" ENGINE = InnoDB;
108108
INSERT INTO t12 VALUES(2, "ccccchfc");
109109
ALTER INSTANCE ROTATE INNODB MASTER KEY;
@@ -116,21 +116,21 @@ PLUGIN_NAME keyring_file
116116
PLUGIN_VERSION 1.0
117117
PLUGIN_STATUS ACTIVE
118118
SELECT * FROM t2;
119-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
119+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
120120
CREATE TABLE t11(c1 INT, c2 char(20)) ENCRYPTION="Y" ENGINE = InnoDB;
121121
SELECT * FROM t2;
122-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
122+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
123123
UNINSTALL PLUGIN keyring_file;
124124
SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS
125125
FROM INFORMATION_SCHEMA.PLUGINS WHERE plugin_name='keyring_file';
126126
SELECT * FROM t11;
127127
c1 c2
128128
SELECT COUNT(*) FROM t1;
129-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
129+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
130130
CREATE TABLE t4(c1 INT, c2 char(20)) ENCRYPTION="Y" ENGINE = InnoDB;
131-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
131+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
132132
ALTER INSTANCE ROTATE INNODB MASTER KEY;
133-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
133+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
134134
CREATE TABLE t5(c1 INT, c2 char(20)) ENGINE = InnoDB;
135135
INSERT INTO t5 VALUES(100, "without_enc");
136136
keyring
@@ -143,11 +143,11 @@ PLUGIN_NAME keyring_file
143143
PLUGIN_VERSION 1.0
144144
PLUGIN_STATUS ACTIVE
145145
CREATE TABLE t6(c1 INT, c2 char(20)) ENCRYPTION="Y" ENGINE = InnoDB;
146-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
146+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
147147
ALTER INSTANCE ROTATE INNODB MASTER KEY;
148-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
148+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
149149
SELECT * FROM t3;
150-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
150+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
151151

152152
SELECT * FROM t5;
153153
c1 c2

mysql-test/suite/innodb/r/table_encrypt_1.result

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ call mtr.add_suppression("ibd can't be decrypted , please confirm the keyfile is
77
call mtr.add_suppression("\\[Warning\\] InnoDB: Ignoring tablespace .* because it could not be opened");
88
call mtr.add_suppression("\\[ERROR\\] InnoDB: If you are installing InnoDB, remember that you must create directories yourself, InnoDB does not create them.");
99
CREATE TABLE t1(c1 INT, c2 char(20)) ENCRYPTION="Y" ENGINE = InnoDB;
10-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
10+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
1111
CREATE TABLE t1(c1 INT, c2 char(20)) ENGINE = InnoDB;
1212
ALTER TABLE t1 ENCRYPTION="Y", algorithm=copy;
13-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
13+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
1414
DROP TABLE IF EXISTS t1;
1515
SET GLOBAL innodb_file_per_table = 0;
1616
SELECT @@innodb_file_per_table;
@@ -69,7 +69,7 @@ c1 c2
6969
0 aaaaa
7070
# restart
7171
SELECT * FROM t1 ORDER BY c1 LIMIT 10;
72-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
72+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
7373
SELECT * FROM t1 ORDER BY c1 LIMIT 10;
7474
c1 c2
7575
0 aaaaa

mysql-test/suite/innodb/r/table_encrypt_3.result

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ SELECT @@innodb_file_per_table;
1010
1
1111
DROP TABLE IF EXISTS t_encrypt;
1212
CREATE TABLE t_encrypt(c1 INT, c2 char(20)) ENCRYPTION="Y" ENGINE = InnoDB;
13-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
13+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
1414
UNINSTALL PLUGIN keyring_file;
1515
ERROR 42000: PLUGIN keyring_file does not exist
1616
ALTER INSTANCE ROTATE INNODB MASTER KEY;
17-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
17+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
1818
# Starting server with keyring plugin
1919
# restart: --early-plugin-load=keyring_file=keyring_file.so --loose-keyring_file_data=MYSQL_TMP_DIR/mysecret_keyring --plugin-dir=KEYRING_PLUGIN_PATH
2020
DROP DATABASE IF EXISTS tde_db;

mysql-test/suite/innodb/r/table_encrypt_5.result

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ COUNT(*)
202202
64
203203
# Error on "ALTER INSTANCE ..." after UNINSTALL PLUGIN
204204
ALTER INSTANCE ROTATE INNODB MASTER KEY;
205-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
205+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
206206
# new encrypt table creation is blocked after uninstall
207207
CREATE TABLE tde_db.t_encrypt_3(c2 INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
208208
c3 CHAR(255) Default 'No text',
@@ -212,7 +212,7 @@ c6 INT GENERATED ALWAYS AS (JSON_EXTRACT(c4,'$.key_b')) VIRTUAL,
212212
c7 POINT NOT NULL,
213213
spatial INDEX idx2 (c7)
214214
) ENCRYPTION="Y" ENGINE = InnoDB;
215-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
215+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
216216
# new non encrypt table
217217
CREATE TABLE tde_db.t_non_encrypt_3(c2 INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
218218
c3 CHAR(255) Default 'No text',
@@ -537,9 +537,9 @@ c2 right(c3,20) c4 c5 c6 ST_AsText(c7)
537537
# restart:
538538
# encrypt table not accessible
539539
SELECT COUNT(*) FROM tde_db.t_encrypt;
540-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
540+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
541541
SELECT COUNT(*) FROM tde_db.t_encrypt_2;
542-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
542+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
543543
# NON encrypt table are accessible
544544
SELECT COUNT(*) FROM tde_db.t_non_encrypt;
545545
COUNT(*)
@@ -556,7 +556,7 @@ c6 INT GENERATED ALWAYS AS (JSON_EXTRACT(c4,'$.key_b')) VIRTUAL,
556556
c7 POINT NOT NULL,
557557
spatial INDEX idx2 (c7)
558558
) ENCRYPTION="Y" ENGINE = InnoDB;
559-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
559+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
560560
# non encrypt table possible
561561
CREATE TABLE tde_db.t_non_encrypt_4(c2 INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
562562
c3 CHAR(255) Default 'No text',
@@ -571,12 +571,12 @@ SELECT COUNT(*) FROM tde_db.t_non_encrypt_4;
571571
COUNT(*)
572572
64
573573
ALTER INSTANCE ROTATE INNODB MASTER KEY;
574-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
574+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
575575
# encrypt table not accessible
576576
SELECT COUNT(*) FROM tde_db.t_encrypt;
577-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
577+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
578578
SELECT COUNT(*) FROM tde_db.t_encrypt_2;
579-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
579+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
580580
DROP TABLE tde_db.t_encrypt , tde_db.t_encrypt_2;
581581
DROP TABLE tde_db.t_non_encrypt , tde_db.t_non_encrypt_2 ,tde_db.t_non_encrypt_4;
582582
DROP DATABASE tde_db;
@@ -910,9 +910,9 @@ c6 INT GENERATED ALWAYS AS (JSON_EXTRACT(c4,'$.key_b')) VIRTUAL,
910910
c7 POINT NOT NULL,
911911
spatial INDEX idx2 (c7)
912912
) ENCRYPTION="Y" ENGINE = InnoDB;
913-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
913+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
914914
ALTER INSTANCE ROTATE INNODB MASTER KEY;
915-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
915+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
916916
#-----------------------------------------------------------------------
917917
# Test 4 : Restart with new keyring_data_file
918918
# Old encrypt table not accessible , non encrypt tables accessible
@@ -988,9 +988,9 @@ c2 right(c3,20) c4 c5 c6 ST_AsText(c7)
988988
# restart: --early-plugin-load=keyring_file=keyring_file.so --loose-keyring_file_data=MYSQL_TMP_DIR/mysecret_keyring_new --plugin-dir=KEYRING_PLUGIN_PATH
989989
# encrypt table not accessible
990990
SELECT COUNT(*) FROM tde_db.t_encrypt;
991-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
991+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
992992
SELECT COUNT(*) FROM tde_db.t_encrypt_2;
993-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
993+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
994994
# NON encrypt table are accessible
995995
SELECT COUNT(*) FROM tde_db.t_non_encrypt;
996996
COUNT(*)

mysql-test/suite/rpl/r/rpl_key_rotation.result

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ call mtr.add_suppression("\\[Error\\] Function 'keyring_file' already exists");
77
call mtr.add_suppression("\\[Error\\] Couldn't load plugin named 'keyring_file' with soname 'keyring_file.so'.");
88
call mtr.add_suppression("\\[Error\\] InnoDB: Can't generate new master key, please check the keyring plugin is loaded.");
99
call mtr.add_suppression("\\[Error\\] InnoDB: Encryption can't find master key, please check the keyring plugin is loaded.");
10-
call mtr.add_suppression("Error 'Can't find master key from keyring, please check keyring plugin is loaded.");
11-
call mtr.add_suppression("\\[Warning\\] Slave: Can't find master key from keyring, please check keyring plugin is loaded.");
10+
call mtr.add_suppression("Error 'Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.");
11+
call mtr.add_suppression("\\[Warning\\] Slave: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.");
1212
call mtr.add_suppression("\\[Error\\] InnoDB: Can't generate new master key for tablespace encryption, please check the keyring plugin is loaded.");
1313
call mtr.add_suppression("The slave coordinator and worker threads are stopped");
1414
[On Master]
@@ -115,7 +115,7 @@ c1 c2
115115
2 ccccc
116116

117117
ALTER INSTANCE ROTATE INNODB MASTER KEY;
118-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
118+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
119119
# Installing keyring_file plugin on master.
120120
INSTALL PLUGIN keyring_file SONAME 'keyring_file.so';
121121
# Cleanup

mysql-test/suite/rpl/t/rpl_key_rotation.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ call mtr.add_suppression("\\[Error\\] Function 'keyring_file' already exists");
88
call mtr.add_suppression("\\[Error\\] Couldn't load plugin named 'keyring_file' with soname 'keyring_file.so'.");
99
call mtr.add_suppression("\\[Error\\] InnoDB: Can't generate new master key, please check the keyring plugin is loaded.");
1010
call mtr.add_suppression("\\[Error\\] InnoDB: Encryption can't find master key, please check the keyring plugin is loaded.");
11-
call mtr.add_suppression("Error 'Can't find master key from keyring, please check keyring plugin is loaded.");
12-
call mtr.add_suppression("\\[Warning\\] Slave: Can't find master key from keyring, please check keyring plugin is loaded.");
11+
call mtr.add_suppression("Error 'Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.");
12+
call mtr.add_suppression("\\[Warning\\] Slave: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.");
1313
call mtr.add_suppression("\\[Error\\] InnoDB: Can't generate new master key for tablespace encryption, please check the keyring plugin is loaded.");
1414
call mtr.add_suppression("The slave coordinator and worker threads are stopped");
1515

rapid/plugin/group_replication/tests/mtr/r/gr_key_rotation.result

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ call mtr.add_suppression("\\[ERROR\\] Plugin keyring_file reported: 'keyring_fil
1010
call mtr.add_suppression("\\[ERROR\\] Plugin keyring_file reported: 'File .*keyring' not found .*");
1111
set sql_log_bin=1;
1212
ALTER INSTANCE ROTATE INNODB MASTER KEY;
13-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
13+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
1414
INSTALL PLUGIN keyring_file SONAME 'keyring_file.so';
1515
SET @@global.keyring_file_data='MYSQL_TMP_DIR/keyring_server1/keyring_server1';
1616
SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS FROM INFORMATION_SCHEMA.PLUGINS WHERE plugin_name='keyring_file';
@@ -29,8 +29,8 @@ INSERT INTO t2 VALUEs(2,2);
2929
[connection server2]
3030
set sql_log_bin=0;
3131
call mtr.add_suppression("\\[ERROR\\] InnoDB: Encryption can't find master key, please check the keyring plugin is loaded*");
32-
call mtr.add_suppression(".*Can't find master key from keyring, please check keyring plugin is loaded*");
33-
call mtr.add_suppression(".*Slave SQL for channel 'group_replication_applier': Error 'Can't find master key from keyring, please check keyring plugin is loaded.' on query*");
32+
call mtr.add_suppression(".*Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.");
33+
call mtr.add_suppression(".*Slave SQL for channel 'group_replication_applier': Error 'Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.' on query*");
3434
call mtr.add_suppression(".*Slave SQL for channel 'group_replication_applier': ... The slave coordinator and worker threads are stopped, possibly leaving data in inconsistent state*");
3535
call mtr.add_suppression("\\[Error\\] Plugin group_replication reported: 'The applier thread execution was aborted. Unable to process more transactions, this member will now leave the group.'");
3636
call mtr.add_suppression("\\[Error\\] Plugin group_replication reported: 'Fatal error during execution on the Applier process of Group Replication. The server will now leave the group.'");
@@ -43,7 +43,7 @@ call mtr.add_suppression("\\[ERROR\\] Plugin keyring_file reported: 'File .*keyr
4343
call mtr.add_suppression("\\[Error\\] Plugin group_replication reported: 'Message received while the plugin is not ready, message discarded'*");
4444
set sql_log_bin=1;
4545
ALTER INSTANCE ROTATE INNODB MASTER KEY;
46-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
46+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
4747
INSTALL PLUGIN keyring_file SONAME 'keyring_file.so';
4848
SET @@global.keyring_file_data='MYSQL_TMP_DIR/keyring_server2/keyring_server2';
4949
SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS FROM INFORMATION_SCHEMA.PLUGINS WHERE plugin_name='keyring_file';
@@ -63,9 +63,9 @@ UNINSTALL PLUGIN keyring_file;
6363
SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS FROM INFORMATION_SCHEMA.PLUGINS WHERE plugin_name='keyring_file';
6464
INSERT INTO t1 VALUES(7,'seventh');
6565
CREATE TABLE t3(c1 INT PRIMARY KEY, c2 char(20)) ENCRYPTION="Y" ENGINE = InnoDB;
66-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
66+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
6767
ALTER INSTANCE ROTATE INNODB MASTER KEY;
68-
ERROR HY000: Can't find master key from keyring, please check keyring plugin is loaded.
68+
ERROR HY000: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
6969
[connection server1]
7070
CREATE TABLE t3(c1 INT PRIMARY KEY) ENCRYPTION="Y" ENGINE = InnoDB;
7171
INSERT INTO t3 VALUES(1);

rapid/plugin/group_replication/tests/mtr/t/gr_key_rotation.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ INSERT INTO t2 VALUEs(2,2);
7070

7171
set sql_log_bin=0;
7272
call mtr.add_suppression("\\[ERROR\\] InnoDB: Encryption can't find master key, please check the keyring plugin is loaded*");
73-
call mtr.add_suppression(".*Can't find master key from keyring, please check keyring plugin is loaded*");
74-
call mtr.add_suppression(".*Slave SQL for channel 'group_replication_applier': Error 'Can't find master key from keyring, please check keyring plugin is loaded.' on query*");
73+
call mtr.add_suppression(".*Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.");
74+
call mtr.add_suppression(".*Slave SQL for channel 'group_replication_applier': Error 'Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.' on query*");
7575
call mtr.add_suppression(".*Slave SQL for channel 'group_replication_applier': ... The slave coordinator and worker threads are stopped, possibly leaving data in inconsistent state*");
7676
call mtr.add_suppression("\\[Error\\] Plugin group_replication reported: 'The applier thread execution was aborted. Unable to process more transactions, this member will now leave the group.'");
7777
call mtr.add_suppression("\\[Error\\] Plugin group_replication reported: 'Fatal error during execution on the Applier process of Group Replication. The server will now leave the group.'");

0 commit comments

Comments
 (0)