Activity log for bug #1692113

Date Who What changed Old value New value Message
2017-05-19 20:54:29 Marcelo Altmann bug added bug
2017-05-19 20:58:18 Marcelo Altmann description wsrep_slave_FK_checks is not working properly. Even when we set it to OFF slave applier threads continue to validate foreign keys. How to reproduce: node1: CREATE DATABASE IF NOT EXISTS fk; use fk; CREATE TABLE fk.parent ( `id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB; CREATE TABLE fk.child ( `id` int(11) NOT NULL, `pId` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `fk_parent` (`pId`), CONSTRAINT `fk_parent` FOREIGN KEY (`pId`) REFERENCES `parent` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB; INSERT INTO fk.parent VALUES (1),(2),(3); INSERT INTO fk.child VALUES (1,1),(2,2),(3,3); node2: add wsrep_slave_FK_checks = 0; to my.cnf restart mysql node1: set sql_log_bin=0; DELETE FROM fk.child WHERE id = 1; set sql_log_bin=1;DELETE FROM fk.parent WHERE id = 1; From what I can see, nodes are honoring the session variable from master. On GRA_ file we can see SET @@session.foreign_key_checks=1: [root@marcelo_altmann_pxc_node_2 mysql]# mysqlbinlog -vvv GRA_1_12.log.c /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/; /*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/; DELIMITER /*!*/; # at 4 #170519 16:50:05 server id 2 end_log_pos 123 Start: binlog v 4, server v 5.7.17-13-57-log created 170519 16:50:05 # Warning: this binlog is either in use or was not closed properly. BINLOG ' fVofWQ8CAAAAdwAAAHsAAAABAAQANS43LjE3LTEzLTU3LWxvZwAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAEzgNAAgAEgAEBAQEEgAAXwAEGggAAAAICAgCAAAACgoKKioAEjQA AGFXQe4= '/*!*/; # at 123 #170519 16:50:05 server id 2 end_log_pos 150 Previous-GTIDs # [empty] # at 150 #170519 16:44:13 server id 1 end_log_pos 71 Query thread_id=7 exec_time=0 error_code=0 SET TIMESTAMP=1495226653/*!*/; SET @@session.pseudo_thread_id=7/*!*/; SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@session.autocommit=1/*!*/; SET @@session.sql_mode=1436549152/*!*/; SET @@session.auto_increment_increment=2, @@session.auto_increment_offset=2/*!*/; /*!\C latin1 *//*!*/; SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/; SET @@session.lc_time_names=0/*!*/; SET @@session.collation_database=DEFAULT/*!*/; BEGIN /*!*/; # at 221 #170519 16:44:13 server id 1 end_log_pos 114 Table_map: `fk`.`parent` mapped to number 109 # at 264 #170519 16:44:13 server id 1 end_log_pos 150 Delete_rows: table id 109 flags: STMT_END_F BINLOG ' HVkfWRMBAAAAKwAAAHIAAAAAAG0AAAAAAAMAAmZrAAZwYXJlbnQAAQMAAA== HVkfWSABAAAAJAAAAJYAAAAAAG0AAAAAAAEAAgAB//4BAAAA '/*!*/; ### DELETE FROM `fk`.`parent` ### WHERE ### @1=1 /* INT meta=0 nullable=0 is_null=0 */ ROLLBACK /* added by mysqlbinlog */ /*!*/; SET @@SESSION.GTID_NEXT= 'AUTOMATIC' /* added by mysqlbinlog */ /*!*/; DELIMITER ; # End of log file /*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/; /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/; wsrep_slave_FK_checks is not working properly. Even when we set it to OFF slave applier threads continue to validate foreign keys. How to reproduce: node1: CREATE DATABASE IF NOT EXISTS fk; use fk; CREATE TABLE fk.parent ( `id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB; CREATE TABLE fk.child ( `id` int(11) NOT NULL, `pId` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `fk_parent` (`pId`), CONSTRAINT `fk_parent` FOREIGN KEY (`pId`) REFERENCES `parent` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB; INSERT INTO fk.parent VALUES (1),(2),(3); INSERT INTO fk.child VALUES (1,1),(2,2),(3,3); node2: add wsrep_slave_FK_checks = 0; to my.cnf restart mysql node1:   set sql_log_bin=0; DELETE FROM fk.child WHERE id = 1; set sql_log_bin=1;DELETE FROM fk.parent WHERE id = 1; At this point, node2 will fail: 2017-05-19T20:44:13.743977Z 1 [ERROR] Slave SQL: Could not execute Delete_rows event on table fk.parent; Cannot delete or update a parent row: a foreign key constraint fails (`fk`.`child`, CONSTRAINT `fk_parent` FOREIGN KEY (`pId`) REFERENCES `parent` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION), Error_code: 1451; handler error HA_ERR_ROW_IS_REFERENCED; the event's master log FIRST, end_log_pos 150, Error_code: 1451 2017-05-19T20:44:13.744030Z 1 [Warning] WSREP: RBR event 3 Delete_rows apply warning: 152, 12 2017-05-19T20:44:13.744517Z 1 [Warning] WSREP: Failed to apply app buffer: seqno: 12, status: 1 at galera/src/trx_handle.cpp:apply():351 Retrying 2th time 2017-05-19T20:44:13.745040Z 1 [ERROR] Slave SQL: Could not execute Delete_rows event on table fk.parent; Cannot delete or update a parent row: a foreign key constraint fails (`fk`.`child`, CONSTRAINT `fk_parent` FOREIGN KEY (`pId`) REFERENCES `parent` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION), Error_code: 1451; handler error HA_ERR_ROW_IS_REFERENCED; the event's master log FIRST, end_log_pos 150, Error_code: 1451 2017-05-19T20:44:13.745072Z 1 [Warning] WSREP: RBR event 3 Delete_rows apply warning: 152, 12 2017-05-19T20:44:13.745421Z 1 [Warning] WSREP: Failed to apply app buffer: seqno: 12, status: 1 at galera/src/trx_handle.cpp:apply():351 Retrying 3th time 2017-05-19T20:44:13.745938Z 1 [ERROR] Slave SQL: Could not execute Delete_rows event on table fk.parent; Cannot delete or update a parent row: a foreign key constraint fails (`fk`.`child`, CONSTRAINT `fk_parent` FOREIGN KEY (`pId`) REFERENCES `parent` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION), Error_code: 1451; handler error HA_ERR_ROW_IS_REFERENCED; the event's master log FIRST, end_log_pos 150, Error_code: 1451 2017-05-19T20:44:13.746009Z 1 [Warning] WSREP: RBR event 3 Delete_rows apply warning: 152, 12 2017-05-19T20:44:13.746347Z 1 [Warning] WSREP: Failed to apply app buffer: seqno: 12, status: 1 at galera/src/trx_handle.cpp:apply():351 Retrying 4th time 2017-05-19T20:44:13.746812Z 1 [ERROR] Slave SQL: Could not execute Delete_rows event on table fk.parent; Cannot delete or update a parent row: a foreign key constraint fails (`fk`.`child`, CONSTRAINT `fk_parent` FOREIGN KEY (`pId`) REFERENCES `parent` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION), Error_code: 1451; handler error HA_ERR_ROW_IS_REFERENCED; the event's master log FIRST, end_log_pos 150, Error_code: 1451 2017-05-19T20:44:13.746841Z 1 [Warning] WSREP: RBR event 3 Delete_rows apply warning: 152, 12 2017-05-19T20:44:13.747244Z 1 [ERROR] WSREP: Failed to apply trx: source: b865145f-3cd3-11e7-873e-ef415d6ef5fe version: 3 local: 0 state: APPLYING flags: 1 conn_id: 7 trx_id: 13 seqnos (l: 9, g: 12, s: 11, d: 11, ts: 6555470757627001) 2017-05-19T20:44:13.747272Z 1 [ERROR] WSREP: Failed to apply trx 12 4 times 2017-05-19T20:44:13.747290Z 1 [ERROR] WSREP: Node consistency compromized, aborting... From what I can see, nodes are honoring the session variable from master. On GRA_ file we can see SET @@session.foreign_key_checks=1: [root@marcelo_altmann_pxc_node_2 mysql]# mysqlbinlog -vvv GRA_1_12.log.c /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/; /*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/; DELIMITER /*!*/; # at 4 #170519 16:50:05 server id 2 end_log_pos 123 Start: binlog v 4, server v 5.7.17-13-57-log created 170519 16:50:05 # Warning: this binlog is either in use or was not closed properly. BINLOG ' fVofWQ8CAAAAdwAAAHsAAAABAAQANS43LjE3LTEzLTU3LWxvZwAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAEzgNAAgAEgAEBAQEEgAAXwAEGggAAAAICAgCAAAACgoKKioAEjQA AGFXQe4= '/*!*/; # at 123 #170519 16:50:05 server id 2 end_log_pos 150 Previous-GTIDs # [empty] # at 150 #170519 16:44:13 server id 1 end_log_pos 71 Query thread_id=7 exec_time=0 error_code=0 SET TIMESTAMP=1495226653/*!*/; SET @@session.pseudo_thread_id=7/*!*/; SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@session.autocommit=1/*!*/; SET @@session.sql_mode=1436549152/*!*/; SET @@session.auto_increment_increment=2, @@session.auto_increment_offset=2/*!*/; /*!\C latin1 *//*!*/; SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/; SET @@session.lc_time_names=0/*!*/; SET @@session.collation_database=DEFAULT/*!*/; BEGIN /*!*/; # at 221 #170519 16:44:13 server id 1 end_log_pos 114 Table_map: `fk`.`parent` mapped to number 109 # at 264 #170519 16:44:13 server id 1 end_log_pos 150 Delete_rows: table id 109 flags: STMT_END_F BINLOG ' HVkfWRMBAAAAKwAAAHIAAAAAAG0AAAAAAAMAAmZrAAZwYXJlbnQAAQMAAA== HVkfWSABAAAAJAAAAJYAAAAAAG0AAAAAAAEAAgAB//4BAAAA '/*!*/; ### DELETE FROM `fk`.`parent` ### WHERE ### @1=1 /* INT meta=0 nullable=0 is_null=0 */ ROLLBACK /* added by mysqlbinlog */ /*!*/; SET @@SESSION.GTID_NEXT= 'AUTOMATIC' /* added by mysqlbinlog */ /*!*/; DELIMITER ; # End of log file /*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/; /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/;
2017-05-19 21:31:59 Marcelo Altmann description wsrep_slave_FK_checks is not working properly. Even when we set it to OFF slave applier threads continue to validate foreign keys. How to reproduce: node1: CREATE DATABASE IF NOT EXISTS fk; use fk; CREATE TABLE fk.parent ( `id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB; CREATE TABLE fk.child ( `id` int(11) NOT NULL, `pId` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `fk_parent` (`pId`), CONSTRAINT `fk_parent` FOREIGN KEY (`pId`) REFERENCES `parent` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB; INSERT INTO fk.parent VALUES (1),(2),(3); INSERT INTO fk.child VALUES (1,1),(2,2),(3,3); node2: add wsrep_slave_FK_checks = 0; to my.cnf restart mysql node1:   set sql_log_bin=0; DELETE FROM fk.child WHERE id = 1; set sql_log_bin=1;DELETE FROM fk.parent WHERE id = 1; At this point, node2 will fail: 2017-05-19T20:44:13.743977Z 1 [ERROR] Slave SQL: Could not execute Delete_rows event on table fk.parent; Cannot delete or update a parent row: a foreign key constraint fails (`fk`.`child`, CONSTRAINT `fk_parent` FOREIGN KEY (`pId`) REFERENCES `parent` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION), Error_code: 1451; handler error HA_ERR_ROW_IS_REFERENCED; the event's master log FIRST, end_log_pos 150, Error_code: 1451 2017-05-19T20:44:13.744030Z 1 [Warning] WSREP: RBR event 3 Delete_rows apply warning: 152, 12 2017-05-19T20:44:13.744517Z 1 [Warning] WSREP: Failed to apply app buffer: seqno: 12, status: 1 at galera/src/trx_handle.cpp:apply():351 Retrying 2th time 2017-05-19T20:44:13.745040Z 1 [ERROR] Slave SQL: Could not execute Delete_rows event on table fk.parent; Cannot delete or update a parent row: a foreign key constraint fails (`fk`.`child`, CONSTRAINT `fk_parent` FOREIGN KEY (`pId`) REFERENCES `parent` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION), Error_code: 1451; handler error HA_ERR_ROW_IS_REFERENCED; the event's master log FIRST, end_log_pos 150, Error_code: 1451 2017-05-19T20:44:13.745072Z 1 [Warning] WSREP: RBR event 3 Delete_rows apply warning: 152, 12 2017-05-19T20:44:13.745421Z 1 [Warning] WSREP: Failed to apply app buffer: seqno: 12, status: 1 at galera/src/trx_handle.cpp:apply():351 Retrying 3th time 2017-05-19T20:44:13.745938Z 1 [ERROR] Slave SQL: Could not execute Delete_rows event on table fk.parent; Cannot delete or update a parent row: a foreign key constraint fails (`fk`.`child`, CONSTRAINT `fk_parent` FOREIGN KEY (`pId`) REFERENCES `parent` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION), Error_code: 1451; handler error HA_ERR_ROW_IS_REFERENCED; the event's master log FIRST, end_log_pos 150, Error_code: 1451 2017-05-19T20:44:13.746009Z 1 [Warning] WSREP: RBR event 3 Delete_rows apply warning: 152, 12 2017-05-19T20:44:13.746347Z 1 [Warning] WSREP: Failed to apply app buffer: seqno: 12, status: 1 at galera/src/trx_handle.cpp:apply():351 Retrying 4th time 2017-05-19T20:44:13.746812Z 1 [ERROR] Slave SQL: Could not execute Delete_rows event on table fk.parent; Cannot delete or update a parent row: a foreign key constraint fails (`fk`.`child`, CONSTRAINT `fk_parent` FOREIGN KEY (`pId`) REFERENCES `parent` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION), Error_code: 1451; handler error HA_ERR_ROW_IS_REFERENCED; the event's master log FIRST, end_log_pos 150, Error_code: 1451 2017-05-19T20:44:13.746841Z 1 [Warning] WSREP: RBR event 3 Delete_rows apply warning: 152, 12 2017-05-19T20:44:13.747244Z 1 [ERROR] WSREP: Failed to apply trx: source: b865145f-3cd3-11e7-873e-ef415d6ef5fe version: 3 local: 0 state: APPLYING flags: 1 conn_id: 7 trx_id: 13 seqnos (l: 9, g: 12, s: 11, d: 11, ts: 6555470757627001) 2017-05-19T20:44:13.747272Z 1 [ERROR] WSREP: Failed to apply trx 12 4 times 2017-05-19T20:44:13.747290Z 1 [ERROR] WSREP: Node consistency compromized, aborting... From what I can see, nodes are honoring the session variable from master. On GRA_ file we can see SET @@session.foreign_key_checks=1: [root@marcelo_altmann_pxc_node_2 mysql]# mysqlbinlog -vvv GRA_1_12.log.c /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/; /*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/; DELIMITER /*!*/; # at 4 #170519 16:50:05 server id 2 end_log_pos 123 Start: binlog v 4, server v 5.7.17-13-57-log created 170519 16:50:05 # Warning: this binlog is either in use or was not closed properly. BINLOG ' fVofWQ8CAAAAdwAAAHsAAAABAAQANS43LjE3LTEzLTU3LWxvZwAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAEzgNAAgAEgAEBAQEEgAAXwAEGggAAAAICAgCAAAACgoKKioAEjQA AGFXQe4= '/*!*/; # at 123 #170519 16:50:05 server id 2 end_log_pos 150 Previous-GTIDs # [empty] # at 150 #170519 16:44:13 server id 1 end_log_pos 71 Query thread_id=7 exec_time=0 error_code=0 SET TIMESTAMP=1495226653/*!*/; SET @@session.pseudo_thread_id=7/*!*/; SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@session.autocommit=1/*!*/; SET @@session.sql_mode=1436549152/*!*/; SET @@session.auto_increment_increment=2, @@session.auto_increment_offset=2/*!*/; /*!\C latin1 *//*!*/; SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/; SET @@session.lc_time_names=0/*!*/; SET @@session.collation_database=DEFAULT/*!*/; BEGIN /*!*/; # at 221 #170519 16:44:13 server id 1 end_log_pos 114 Table_map: `fk`.`parent` mapped to number 109 # at 264 #170519 16:44:13 server id 1 end_log_pos 150 Delete_rows: table id 109 flags: STMT_END_F BINLOG ' HVkfWRMBAAAAKwAAAHIAAAAAAG0AAAAAAAMAAmZrAAZwYXJlbnQAAQMAAA== HVkfWSABAAAAJAAAAJYAAAAAAG0AAAAAAAEAAgAB//4BAAAA '/*!*/; ### DELETE FROM `fk`.`parent` ### WHERE ### @1=1 /* INT meta=0 nullable=0 is_null=0 */ ROLLBACK /* added by mysqlbinlog */ /*!*/; SET @@SESSION.GTID_NEXT= 'AUTOMATIC' /* added by mysqlbinlog */ /*!*/; DELIMITER ; # End of log file /*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/; /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/; wsrep_slave_FK_checks is not working properly. Even when we set it to OFF slave applier threads continue to validate foreign keys. How to reproduce: node1: CREATE DATABASE IF NOT EXISTS fk; use fk; CREATE TABLE fk.parent ( `id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB; CREATE TABLE fk.child ( `id` int(11) NOT NULL, `pId` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `fk_parent` (`pId`), CONSTRAINT `fk_parent` FOREIGN KEY (`pId`) REFERENCES `parent` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB; INSERT INTO fk.parent VALUES (1),(2),(3); INSERT INTO fk.child VALUES (1,1),(2,2),(3,3); node2: add wsrep_slave_FK_checks = 0; to my.cnf restart mysql node1:   set sql_log_bin=0; DELETE FROM fk.child WHERE id = 1; set sql_log_bin=1;DELETE FROM fk.parent WHERE id = 1; From what I can see, nodes are honoring the session variable from master. On GRA_ file we can see SET @@session.foreign_key_checks=1: [root@marcelo_altmann_pxc_node_2 mysql]# mysqlbinlog -vvv GRA_1_12.log.c /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/; /*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/; DELIMITER /*!*/; # at 4 #170519 16:50:05 server id 2 end_log_pos 123 Start: binlog v 4, server v 5.7.17-13-57-log created 170519 16:50:05 # Warning: this binlog is either in use or was not closed properly. BINLOG ' fVofWQ8CAAAAdwAAAHsAAAABAAQANS43LjE3LTEzLTU3LWxvZwAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAEzgNAAgAEgAEBAQEEgAAXwAEGggAAAAICAgCAAAACgoKKioAEjQA AGFXQe4= '/*!*/; # at 123 #170519 16:50:05 server id 2 end_log_pos 150 Previous-GTIDs # [empty] # at 150 #170519 16:44:13 server id 1 end_log_pos 71 Query thread_id=7 exec_time=0 error_code=0 SET TIMESTAMP=1495226653/*!*/; SET @@session.pseudo_thread_id=7/*!*/; SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@session.autocommit=1/*!*/; SET @@session.sql_mode=1436549152/*!*/; SET @@session.auto_increment_increment=2, @@session.auto_increment_offset=2/*!*/; /*!\C latin1 *//*!*/; SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/; SET @@session.lc_time_names=0/*!*/; SET @@session.collation_database=DEFAULT/*!*/; BEGIN /*!*/; # at 221 #170519 16:44:13 server id 1 end_log_pos 114 Table_map: `fk`.`parent` mapped to number 109 # at 264 #170519 16:44:13 server id 1 end_log_pos 150 Delete_rows: table id 109 flags: STMT_END_F BINLOG ' HVkfWRMBAAAAKwAAAHIAAAAAAG0AAAAAAAMAAmZrAAZwYXJlbnQAAQMAAA== HVkfWSABAAAAJAAAAJYAAAAAAG0AAAAAAAEAAgAB//4BAAAA '/*!*/; ### DELETE FROM `fk`.`parent` ### WHERE ### @1=1 /* INT meta=0 nullable=0 is_null=0 */ ROLLBACK /* added by mysqlbinlog */ /*!*/; SET @@SESSION.GTID_NEXT= 'AUTOMATIC' /* added by mysqlbinlog */ /*!*/; DELIMITER ; # End of log file /*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/; /*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/; Workaround: Add to my.cnf init_connect='SET foreign_key_checks=0;' Run on MySQL: SET GLOBAL init_connect='SET foreign_key_checks=0;'
2017-05-19 21:33:04 Marcelo Altmann percona-xtradb-cluster: status New Confirmed
2017-05-19 23:01:27 Jericho Rivera tags i188973
2017-05-31 20:03:07 Sveta Smirnova nominated for series percona-xtradb-cluster/5.7
2017-05-31 20:03:07 Sveta Smirnova bug task added percona-xtradb-cluster/5.7
2017-05-31 20:03:07 Sveta Smirnova nominated for series percona-xtradb-cluster/5.6
2017-05-31 20:03:07 Sveta Smirnova bug task added percona-xtradb-cluster/5.6
2017-05-31 20:03:27 Sveta Smirnova percona-xtradb-cluster/5.7: status New Confirmed