From a07b5afa808be5945b6ba03c6bfd4845c032bcac Mon Sep 17 00:00:00 2001 From: Santosh Praneeth Banda Date: Wed, 4 May 2016 17:59:08 -0700 Subject: [PATCH] Add suppression for expected error Summary: Add suppression for expected error squash with: https://reviews.facebook.net/D57567 Test Plan: mtr Reviewers: hermanlee4 Reviewed By: hermanlee4 Subscribers: webscalesql-eng Differential Revision: https://reviews.facebook.net/D57657 --- mysql-test/suite/rpl/r/rpl_rbr_idempotent_tables.result | 1 + mysql-test/suite/rpl/t/rpl_rbr_idempotent_tables.test | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/mysql-test/suite/rpl/r/rpl_rbr_idempotent_tables.result b/mysql-test/suite/rpl/r/rpl_rbr_idempotent_tables.result index 1ff518e1fa35..55d979c4f77c 100644 --- a/mysql-test/suite/rpl/r/rpl_rbr_idempotent_tables.result +++ b/mysql-test/suite/rpl/r/rpl_rbr_idempotent_tables.result @@ -3,6 +3,7 @@ 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] +call mtr.add_suppression('Slave SQL:.* Could not execute Write_rows event on table test.test_table2'); create table test_table1 (a int primary key); create table test_table2 (a int primary key); insert into test_table1 values(1); diff --git a/mysql-test/suite/rpl/t/rpl_rbr_idempotent_tables.test b/mysql-test/suite/rpl/t/rpl_rbr_idempotent_tables.test index 811c83b937d0..67c64c2f018d 100644 --- a/mysql-test/suite/rpl/t/rpl_rbr_idempotent_tables.test +++ b/mysql-test/suite/rpl/t/rpl_rbr_idempotent_tables.test @@ -1,7 +1,7 @@ source include/master-slave.inc; source include/have_binlog_format_row.inc; - connection master; +call mtr.add_suppression('Slave SQL:.* Could not execute Write_rows event on table test.test_table2'); create table test_table1 (a int primary key); create table test_table2 (a int primary key); insert into test_table1 values(1);