diff options
author | Nirbhay Choubey <nirbhay.choubey@oracle.com> | 2011-12-24 15:08:59 +0530 |
---|---|---|
committer | Nirbhay Choubey <nirbhay.choubey@oracle.com> | 2011-12-24 15:08:59 +0530 |
commit | 0a8824e9c3dee8a6b183acde4fe8732bf3f0ed27 (patch) | |
tree | 3aa332af6e49b284a2bf86e746f4d1d019b993f2 /mysql-test/t/mysqldump.test | |
parent | a4343d56eda71ab95e8d092cebedfd5abf7c710b (diff) | |
download | mariadb-git-0a8824e9c3dee8a6b183acde4fe8732bf3f0ed27.tar.gz |
Bug#12809202 61854: MYSQLDUMP --SINGLE-TRANSACTION
--FLUSH-LOG BREAKS CONSISTENCY
Post-fix for some failing tests.
Diffstat (limited to 'mysql-test/t/mysqldump.test')
-rw-r--r-- | mysql-test/t/mysqldump.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/t/mysqldump.test b/mysql-test/t/mysqldump.test index b1688986090..871b3735b1b 100644 --- a/mysql-test/t/mysqldump.test +++ b/mysql-test/t/mysqldump.test @@ -2243,9 +2243,15 @@ INSERT INTO b12809202_db.t2 VALUES (1), (2), (3); --echo --echo #### Dump ends here #### +# Cleanup DROP TABLE b12809202_db.t1; DROP TABLE b12809202_db.t2; DROP DATABASE b12809202_db; +--echo # +--echo # Delete all existing binary logs. +--echo # +RESET MASTER; + # Wait till we reached the initial number of concurrent sessions --source include/wait_until_count_sessions.inc |