mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +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 mysql-test/r/rpl_insert.result: result file update
This commit is contained in:
@ -1,3 +1,6 @@
|
||||
#
|
||||
# Bug#20821: INSERT DELAYED fails to write some rows to binlog
|
||||
#
|
||||
stop slave;
|
||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||
reset master;
|
||||
@ -13,4 +16,8 @@ COUNT(*)
|
||||
SELECT COUNT(*) FROM mysqlslap.t1;
|
||||
COUNT(*)
|
||||
5000
|
||||
DROP SCHEMA IF EXISTS mysqlslap;
|
||||
#
|
||||
# Cleanup
|
||||
#
|
||||
USE test;
|
||||
DROP SCHEMA mysqlslap;
|
||||
|
Reference in New Issue
Block a user