mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 19:06:14 +01:00 
			
		
		
		
	 ba4541ba7f
			
		
	
	
	ba4541ba7f
	
	
	
		
			
			The mergef00711bba2included a change of the test innodb.log_file_name, which would try to ensure that in the presence of the code fixdecdd4bf49we would get an error on Linux when invoking lseek() on a directory. It turns out that this is not the case in at least one Linux based cloud environment.
		
			
				
	
	
		
			230 lines
		
	
	
	
		
			9.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			230 lines
		
	
	
	
		
			9.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| # WL#7142 InnoDB: Simplify tablespace discovery during crash recovery
 | |
| # Test the detection of duplicate tablespaces.
 | |
| 
 | |
| --source include/have_innodb.inc
 | |
| --source include/no_valgrind_without_big.inc
 | |
| 
 | |
| # Embedded server does not support crashing
 | |
| --source include/not_embedded.inc
 | |
| 
 | |
| call mtr.add_suppression("InnoDB: Header page consists of zero bytes in datafile:");
 | |
| 
 | |
| SET GLOBAL innodb_file_per_table=ON;
 | |
| FLUSH TABLES;
 | |
| 
 | |
| CREATE TABLE t1(a INT PRIMARY KEY) ENGINE=InnoDB;
 | |
| 
 | |
| --source include/restart_mysqld.inc
 | |
| --source include/no_checkpoint_start.inc
 | |
| CREATE TABLE t3(a INT PRIMARY KEY) ENGINE=InnoDB;
 | |
| 
 | |
| BEGIN;
 | |
| INSERT INTO t3 VALUES (33101),(347);
 | |
| INSERT INTO t1 VALUES (42),(9),(101);
 | |
| RENAME TABLE t1 TO t2;
 | |
| UPDATE t2 SET a=347 where a=42;
 | |
| COMMIT;
 | |
| 
 | |
| --let CLEANUP_IF_CHECKPOINT=DROP TABLE t2,t3;
 | |
| --source include/no_checkpoint_end.inc
 | |
| 
 | |
| --echo # Fault 0 (no real fault): Orphan file with duplicate space_id.
 | |
| --copy_file $MYSQLD_DATADIR/test/t2.ibd $MYSQLD_DATADIR/test/t0.ibd
 | |
| 
 | |
| --echo # Fault 1: Two dirty files with the same space_id.
 | |
| --copy_file $MYSQLD_DATADIR/test/t2.ibd $MYSQLD_DATADIR/test/t1.ibd
 | |
| 
 | |
| let SEARCH_FILE= $MYSQLTEST_VARDIR/log/mysqld.1.err;
 | |
| let $check_no_innodb=SELECT * FROM INFORMATION_SCHEMA.ENGINES
 | |
| WHERE engine = 'innodb'
 | |
| AND support IN ('YES', 'DEFAULT', 'ENABLED');
 | |
| 
 | |
| # This could fail to refuse InnoDB startup, in case there was a log
 | |
| # checkpoint after the INSERT. That is what we checked above.
 | |
| --source include/start_mysqld.inc
 | |
| eval $check_no_innodb;
 | |
| let SEARCH_PATTERN= InnoDB: Ignoring data file '.*t2.ibd' with space ID \d+. Another data file called .*t1.ibd exists with the same space ID;
 | |
| --source include/search_pattern_in_file.inc
 | |
| 
 | |
| --source include/shutdown_mysqld.inc
 | |
| 
 | |
| --remove_file $MYSQLD_DATADIR/test/t1.ibd
 | |
| 
 | |
| # This could fail to refuse InnoDB startup, in case there was a log
 | |
| # checkpoint after the CREATE TABLE t3. That is what we checked above.
 | |
| --echo # Fault 2: Wrong space_id in a dirty file, and a missing file.
 | |
| --move_file $MYSQLD_DATADIR/test/t3.ibd $MYSQLD_DATADIR/test/t1.ibd
 | |
| 
 | |
| --source include/start_mysqld.inc
 | |
| eval $check_no_innodb;
 | |
| 
 | |
| let SEARCH_PATTERN= InnoDB: Tablespace \d+ was not found at.*t3.ibd;
 | |
| --source include/search_pattern_in_file.inc
 | |
| 
 | |
| --source include/shutdown_mysqld.inc
 | |
| 
 | |
| --move_file $MYSQLD_DATADIR/test/t1.ibd $MYSQLD_DATADIR/test/t3.ibd
 | |
| 
 | |
| --echo # Fault 3: Wrong space_id in a dirty file, and no missing file.
 | |
| # Swap t2.ibd and t3.ibd.
 | |
| --move_file $MYSQLD_DATADIR/test/t3.ibd $MYSQLD_DATADIR/test/t.ibd
 | |
| --move_file $MYSQLD_DATADIR/test/t2.ibd $MYSQLD_DATADIR/test/t3.ibd
 | |
| --move_file $MYSQLD_DATADIR/test/t.ibd $MYSQLD_DATADIR/test/t2.ibd
 | |
| 
 | |
| --source include/start_mysqld.inc
 | |
| eval $check_no_innodb;
 | |
| 
 | |
| let SEARCH_PATTERN= InnoDB: Ignoring data file '.*t[23].ibd' with space ID;
 | |
| --source include/search_pattern_in_file.inc
 | |
| 
 | |
| let SEARCH_PATTERN= InnoDB: Tablespace \d+ was not found at .*t1.ibd;
 | |
| --source include/search_pattern_in_file.inc
 | |
| let SEARCH_PATTERN= InnoDB: Tablespace \d+ was not found at .*t3.ibd;
 | |
| --source include/search_pattern_in_file.inc
 | |
| let SEARCH_PATTERN= InnoDB: Set innodb_force_recovery=1 to ignore this and to permanently lose all changes to the tablespace;
 | |
| --source include/search_pattern_in_file.inc
 | |
| 
 | |
| --source include/shutdown_mysqld.inc
 | |
| 
 | |
| # Swap back t3.ibd, but hide t2.ibd (which the redo log also knows as t1.ibd).
 | |
| --move_file $MYSQLD_DATADIR/test/t3.ibd $MYSQLD_DATADIR/test/t.ibd
 | |
| --move_file $MYSQLD_DATADIR/test/t2.ibd $MYSQLD_DATADIR/test/t3.ibd
 | |
| 
 | |
| --echo # Fault 4: Missing data file
 | |
| 
 | |
| --source include/start_mysqld.inc
 | |
| eval $check_no_innodb;
 | |
| --source include/shutdown_mysqld.inc
 | |
| 
 | |
| let SEARCH_PATTERN= InnoDB: Tablespace \d+ was not found at .*t[12].ibd.
 | |
| .*InnoDB: Set innodb_force_recovery=1 to ignore this and to permanently lose all changes to the tablespace;
 | |
| --source include/search_pattern_in_file.inc
 | |
| 
 | |
| --echo # Fault 5: Wrong type of data file
 | |
| 
 | |
| --mkdir $MYSQLD_DATADIR/test/t2.ibd
 | |
| 
 | |
| --source include/start_mysqld.inc
 | |
| eval $check_no_innodb;
 | |
| --source include/shutdown_mysqld.inc
 | |
| 
 | |
| # On Linux, lseek() would typically report EINVAL when invoked on a directory.
 | |
| # On other plaftorms as well as some GNU/Linux based environments, such as
 | |
| # a Ubuntu 22.04 based image on Amazon Web Services,
 | |
| # os_file_get_size() would succeed on a directory, and we would get another
 | |
| # error about inability to apply log to a corrupted page.
 | |
| 
 | |
| #--let SEARCH_PATTERN= InnoDB: Could not measure the size of single-table tablespace file '.*test/t2\\.ibd'
 | |
| #--source include/search_pattern_in_file.inc
 | |
| 
 | |
| --rmdir $MYSQLD_DATADIR/test/t2.ibd
 | |
| 
 | |
| # Create a short file.
 | |
| --write_file $MYSQLD_DATADIR/test/t2.ibd
 | |
| EOF
 | |
| 
 | |
| --source include/start_mysqld.inc
 | |
| eval $check_no_innodb;
 | |
| --source include/shutdown_mysqld.inc
 | |
| 
 | |
| let SEARCH_PATTERN= \[Note\] InnoDB: Cannot read first page of .*t2.ibd;
 | |
| --source include/search_pattern_in_file.inc
 | |
| let SEARCH_PATTERN= .*\[ERROR\] InnoDB: Cannot apply log to \\[page id: space=[1-9][0-9]*, page number=3\\] of corrupted file './test/t2\\.ibd';
 | |
| --source include/search_pattern_in_file.inc
 | |
| 
 | |
| # Restore t2.ibd
 | |
| --remove_file $MYSQLD_DATADIR/test/t2.ibd
 | |
| --move_file $MYSQLD_DATADIR/test/t.ibd $MYSQLD_DATADIR/test/t2.ibd
 | |
| 
 | |
| --source include/start_mysqld.inc
 | |
| 
 | |
| SELECT * FROM t2;
 | |
| SELECT * FROM t3;
 | |
| SHOW TABLES;
 | |
| DROP TABLE t2,t3;
 | |
| 
 | |
| --error ER_CANT_CREATE_TABLE
 | |
| CREATE TABLE t0(a INT PRIMARY KEY) ENGINE=InnoDB;
 | |
| --error ER_CANT_CREATE_TABLE
 | |
| CREATE TABLE t0(a INT PRIMARY KEY) ENGINE=InnoDB;
 | |
| --remove_file $MYSQLD_DATADIR/test/t0.ibd
 | |
| CREATE TABLE t0(a INT PRIMARY KEY) ENGINE=InnoDB;
 | |
| DROP TABLE t0;
 | |
| 
 | |
| --disable_query_log
 | |
| # The following are for the orphan file t0.ibd or for the directory t2.ibd:
 | |
| call mtr.add_suppression("InnoDB: Operating system error number [0-9]* in a file operation");
 | |
| call mtr.add_suppression("InnoDB: Error number [0-9]* means '(File exists|Is a directory|Invalid argument)'");
 | |
| call mtr.add_suppression("InnoDB: Cannot create file '.*t0.ibd'");
 | |
| call mtr.add_suppression("InnoDB: The file '.*t0\.ibd' already exists");
 | |
| call mtr.add_suppression("InnoDB: Cannot open datafile for read-write: '.*t2\.ibd'");
 | |
| call mtr.add_suppression("InnoDB: Could not measure the size of single-table tablespace file '.*test/t2\\.ibd'");
 | |
| # The following are for aborted startup without --innodb-force-recovery:
 | |
| call mtr.add_suppression("InnoDB: Tablespace .* was not found at .*test");
 | |
| call mtr.add_suppression("InnoDB: Set innodb_force_recovery=1 to ignore this and to permanently lose all changes to the tablespace");
 | |
| call mtr.add_suppression("InnoDB: Cannot read first page of '.*test.[tu]2.ibd': I/O error");
 | |
| call mtr.add_suppression("InnoDB: Cannot apply log to \\[page id: space=[1-9][0-9]*, page number=3\\] of corrupted file './test/t2\\.ibd'");
 | |
| call mtr.add_suppression("InnoDB: Datafile '.*test.*ibd' is corrupted");
 | |
| call mtr.add_suppression("InnoDB:  Cannot replay file rename. Remove either file and try again");
 | |
| call mtr.add_suppression("InnoDB: Cannot rename.*because the target file exists");
 | |
| call mtr.add_suppression("InnoDB: Log scan aborted at LSN");
 | |
| # The following are for the --innodb-force-recovery=1 with broken u* tables:
 | |
| call mtr.add_suppression("InnoDB: The size of the file .*u[12]\\.ibd is only [1-9][0-9]* bytes, should be at least 65536");
 | |
| call mtr.add_suppression("InnoDB: The size of tablespace file '.*test/u[12].ibd' is only");
 | |
| call mtr.add_suppression("InnoDB: The error means the system cannot find the path specified");
 | |
| call mtr.add_suppression("InnoDB: .*you must create directories");
 | |
| call mtr.add_suppression("InnoDB: Cannot open datafile for read-only: '.*u[1-5]\.ibd'");
 | |
| call mtr.add_suppression("InnoDB: Could not find a valid tablespace file for `test/u[1-5]`");
 | |
| call mtr.add_suppression("InnoDB: Ignoring tablespace for test/u[1-3] because it could not be opened\\.");
 | |
| call mtr.add_suppression("InnoDB: Failed to find tablespace for table .* in the cache. Attempting to load the tablespace with space id");
 | |
| call mtr.add_suppression("InnoDB: Plugin initialization aborted");
 | |
| call mtr.add_suppression("Plugin 'InnoDB' \(init function returned error\|registration as a STORAGE ENGINE failed\)");
 | |
| call mtr.add_suppression("InnoDB: Table test/u[123] in the InnoDB data dictionary has tablespace id [1-9][0-9]*, but tablespace with that id or name does not exist\\. Have you deleted or moved \\.ibd files\\?");
 | |
| call mtr.add_suppression("InnoDB: Cannot replay rename of tablespace.*");
 | |
| call mtr.add_suppression("InnoDB: Attempted to open a previously opened tablespace");
 | |
| call mtr.add_suppression("InnoDB: Recovery cannot access file");
 | |
| call mtr.add_suppression("InnoDB: Cannot read first page in datafile:");
 | |
| FLUSH TABLES;
 | |
| --enable_query_log
 | |
| 
 | |
| --source include/no_checkpoint_start.inc
 | |
| 
 | |
| CREATE TABLE u1(a INT PRIMARY KEY) ENGINE=InnoDB;
 | |
| CREATE TABLE u2(a INT PRIMARY KEY) ENGINE=InnoDB;
 | |
| CREATE TABLE u3(a INT PRIMARY KEY) ENGINE=InnoDB;
 | |
| CREATE TABLE u4(a INT PRIMARY KEY) ENGINE=InnoDB;
 | |
| INSERT INTO u4 VALUES(1);
 | |
| RENAME TABLE u4 TO u5;
 | |
| RENAME TABLE u5 TO u6;
 | |
| INSERT INTO u6 VALUES(2);
 | |
| 
 | |
| --let CLEANUP_IF_CHECKPOINT=DROP TABLE u1,u2,u3,u6;
 | |
| --source include/no_checkpoint_end.inc
 | |
| 
 | |
| --echo # Fault 6: All-zero data file and innodb_force_recovery
 | |
| 
 | |
| --remove_file $MYSQLD_DATADIR/test/u1.ibd
 | |
| --remove_file $MYSQLD_DATADIR/test/u2.ibd
 | |
| --remove_file $MYSQLD_DATADIR/test/u3.ibd
 | |
| 
 | |
| # InnoDB: Header page consists of zero bytes
 | |
| --perl
 | |
| die unless open(FILE, ">$ENV{MYSQLD_DATADIR}/test/u1.ibd");
 | |
| print FILE "\0" x 16384;
 | |
| close(FILE);
 | |
| EOF
 | |
| 
 | |
| --write_line "" $MYSQLD_DATADIR/test/u2.ibd
 | |
| 
 | |
| --copy_file $MYSQLD_DATADIR/test/u6.ibd $MYSQLD_DATADIR/test/u4.ibd
 | |
| 
 | |
| --let $restart_parameters= --innodb-force-recovery=1
 | |
| --source include/start_mysqld.inc
 | |
| DROP TABLE u1,u2,u3,u6;
 | |
| 
 | |
| --remove_file $MYSQLD_DATADIR/test/u4.ibd
 | |
| 
 | |
| --echo # List of files:
 | |
| --list_files $MYSQLD_DATADIR/test
 | |
| 
 | |
| SHOW TABLES;
 |