File: database_myisam.test

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (38 lines) | stat: -rw-r--r-- 1,216 bytes parent folder | download
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
38
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 MASTER;
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/wait_for_binlog_event.inc;
let $MYSQLD_DATADIR= `SELECT @@datadir`;

--let $mask_binlog_commit_events= 1
source include/show_binlog_events.inc;
--let $mask_binlog_commit_events= 0

--echo # Cleanup.
DROP DATABASE testing_1;