File: innodb_recovery_with_upper_case_names.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 (68 lines) | stat: -rw-r--r-- 1,958 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
--echo Bug #18412598  UNCLEAN SYSTEM SHUTDOWN RECOVERY FAILS
--echo		      FOR SCHEMA WITH CAPITAL LETTERS

--source include/have_case_insensitive_file_system.inc

# Start the server with innodb-fast-shutdown=2,so that
# during next invocation of server it enters crash
# recovery mode

create database MYDB;
USE MYDB;
CREATE TABLE mytable (id int primary key) ENGINE=innodb;
CREATE TABLE FOO (id int,constraint FOREIGN KEY (id) REFERENCES mytable(id) ON DELETE CASCADE) ENGINE=innodb;
CREATE TABLE mytable_ref (id int,constraint FOREIGN KEY (id) REFERENCES FOO(id) ON DELETE CASCADE) ENGINE=innodb;

INSERT INTO mytable VALUES (10),(20),(30),(40);
INSERT INTO FOO VALUES (20),(10);
INSERT INTO mytable_ref VALUES (20),(10);

SHOW VARIABLES LIKE 'innodb_fast_shutdown';

START TRANSACTION;

INSERT INTO mytable VALUES (50);
INSERT INTO FOO VALUES (50);
INSERT INTO mytable_ref VALUES (50);

# Stop the server
--exec echo "wait" > $MYSQLTEST_VARDIR/tmp/mysqld.1.expect
--shutdown_server
--source include/wait_until_disconnected.inc

--echo # Restart the server. This will go into crash recovery mode
--exec echo "restart: --innodb-fast-shutdown=0 " > $MYSQLTEST_VARDIR/tmp/mysqld.1.expect
--enable_reconnect
--source include/wait_until_connected_again.inc

USE MYDB;
SELECT * FROM mytable;
SELECT * FROM FOO;
SELECT * FROM mytable_ref;

DELETE FROM mytable WHERE id =10;

SELECT * FROM FOO;
SELECT * FROM mytable_ref;

# Create table with mixed names,this should
# fail in case insensitive systems

--error ER_TABLE_EXISTS_ERROR
CREATE TABLE MYtable (id int) ENGINE=innodb;

--error ER_TABLE_EXISTS_ERROR
CREATE TABLE Foo (id int) ENGINE=innodb;

DROP TABLE mytable_ref,FOO;
DROP TABLE mytable;
use test;
DROP DATABASE MYDB;

--disable_query_log
call mtr.add_suppression("\\[Warning\\] .*MY-\\d+.* Tablespace .*, name '.*', file '.*' is missing");
--enable_query_log

# Clean up
let $restart_parameters = restart:;
--source include/restart_mysqld_no_echo.inc