Skip to content

Commit

Permalink
Add suppression for expected error
Browse files Browse the repository at this point in the history
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
  • Loading branch information
santoshbanda committed May 5, 2016
1 parent 05e5f04 commit a07b5af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions mysql-test/suite/rpl/r/rpl_rbr_idempotent_tables.result
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion 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);
Expand Down

0 comments on commit a07b5af

Please sign in to comment.