-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathdatabase_myisam.test
38 lines (31 loc) · 1.22 KB
/
database_myisam.test
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
source include/have_log_bin.inc;
source include/have_debug.inc;
--echo
--echo # 'DROP TABLE IF EXISTS <deleted table>' are binlogged
--echo # for each table in SEs not supporting atomic DDL which
--echo # were dropped by failed 'DROP DATABASE'.
--echo #
--echo # Unlike test for bug#11765416/58381 this test uses MyISAM
--echo # for t1. So failed DROP DATABASE will have side-effect even
--echo # though removal of InnoDB tables is rolled back.
--echo # DROP TABLE IF EXISTS is logged for MyISAM table in this case.
RESET BINARY LOGS AND GTIDS;
CREATE DATABASE testing_1;
USE testing_1;
CREATE TABLE t1(c1 INT) ENGINE=MyISAM;
CREATE TABLE t2(c1 INT PRIMARY KEY) ENGINE=InnoDB;
--echo #
--echo # 'DROP DATABASE' will fail but will delete table t1.
--echo #
SET SESSION DEBUG='+d,rm_table_no_locks_abort_after_atomic_tables';
--error ER_UNKNOWN_ERROR
DROP DATABASE testing_1;
SET SESSION DEBUG='-d,rm_table_no_locks_abort_after_atomic_tables';
let $wait_binlog_event= DROP TABLE IF EXIST;
source include/rpl/wait_for_binlog_event.inc;
let $MYSQLD_DATADIR= `SELECT @@datadir`;
--let $mask_binlog_commit_events= 1
source include/rpl/deprecated/show_binlog_events.inc;
--let $mask_binlog_commit_events= 0
--echo # Cleanup.
DROP DATABASE testing_1;