diff options
author | Luis Soares <luis.soares@sun.com> | 2009-09-27 23:03:05 +0100 |
---|---|---|
committer | Luis Soares <luis.soares@sun.com> | 2009-09-27 23:03:05 +0100 |
commit | a00bb757838d42eb39d459164da01cdc631b5b2d (patch) | |
tree | 6548be52be73a23b6332318afdadd7d0ee670323 /mysql-test/extra | |
parent | 63a81c09946be5f008eb3423e24db93dc72a3fe8 (diff) | |
download | mariadb-git-a00bb757838d42eb39d459164da01cdc631b5b2d.tar.gz |
BUG#44661: rpl_ndb.rpl_ndb_circular_simplex fails because of
failure to cleanup of table
The test case was not dropping a table before exiting (ie, it was
not cleaning itself after execution). In this case, the warning
message stating that the test did not do a proper cleanup was
deterministic (which can be annoying).
I have found other tests cases on which mtr sporadically reports
that they have not cleaned up after execution:
- rpl_ndb_circular
- rpl_failed_optimize
In this case, the master was dropping a table but there was no
synchronization between the slave and the master.
This patch addresses the rpl_ndb_circular_simplex case by adding
the missing DROP table. The other cases are fixed by deploying
the missing sync_slave_with_master instruction.
Diffstat (limited to 'mysql-test/extra')
-rw-r--r-- | mysql-test/extra/rpl_tests/rpl_failed_optimize.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/extra/rpl_tests/rpl_failed_optimize.test b/mysql-test/extra/rpl_tests/rpl_failed_optimize.test index 0c537ee188d..cd81f2497b8 100644 --- a/mysql-test/extra/rpl_tests/rpl_failed_optimize.test +++ b/mysql-test/extra/rpl_tests/rpl_failed_optimize.test @@ -22,3 +22,4 @@ connection master; select * from t1; commit; drop table t1; +-- sync_slave_with_master |