diff options
author | Monty <monty@mariadb.org> | 2017-12-03 15:21:53 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2017-12-03 15:21:53 +0200 |
commit | d7b0b8ddacd6a27e0ea1c5fbad75aae60ed03d6b (patch) | |
tree | 57d927a15479716eccdb58c1268444c042ac72da /mysql-test/extra | |
parent | bf6d11c4d66f155ce84ba45541f0333493aa084e (diff) | |
download | mariadb-git-d7b0b8ddacd6a27e0ea1c5fbad75aae60ed03d6b.tar.gz |
MDEV-10688 rpl.rpl_row_log_innodb failed in buildbot
Problem was that Binlog_checkpoint can happen at random times.
Fixed by not write binlog_checkpoint for the rpl_log test.
Other things:
- Removed not used variable "$keep_gtid_events"
- Added option for show_binlog_events to skip binlog_checkpoint
Diffstat (limited to 'mysql-test/extra')
-rw-r--r-- | mysql-test/extra/rpl_tests/rpl_log.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/extra/rpl_tests/rpl_log.test b/mysql-test/extra/rpl_tests/rpl_log.test index 01e8497e4de..934f40306ab 100644 --- a/mysql-test/extra/rpl_tests/rpl_log.test +++ b/mysql-test/extra/rpl_tests/rpl_log.test @@ -65,6 +65,8 @@ flush logs; # To make it predictable, we do a useless update now, but which has the # interest of making the slave catch both rotate events. +let $skip_checkpoint_events=1; + eval create table t3 (a int)ENGINE=$engine_type; # Sync slave and force it to start on another binary log |