1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

If mysqlslap schema does not exists, it should be an error, so no need for IF EXISTS

Setting default database back to 'test', so that next test case don't use the wrong database
This commit is contained in:
lars/lthalmann@mysql.com/dl145j.mysql.com
2006-09-21 13:04:33 +02:00
parent 588ab714ff
commit c34601adec
2 changed files with 18 additions and 8 deletions

View File

@ -1,7 +1,6 @@
#
# Bug#20821: INSERT DELAYED fails to write some rows to binlog
#
--echo #
--echo # Bug#20821: INSERT DELAYED fails to write some rows to binlog
--echo #
--source include/master-slave.inc
--source include/not_embedded.inc
@ -35,7 +34,11 @@ SELECT COUNT(*) FROM mysqlslap.t1;
sync_slave_with_master;
SELECT COUNT(*) FROM mysqlslap.t1;
connection master;
DROP SCHEMA IF EXISTS mysqlslap;
sync_slave_with_master;
--echo #
--echo # Cleanup
--echo #
connection master;
USE test;
DROP SCHEMA mysqlslap;
sync_slave_with_master;