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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
|
#
# Show that datafiles are restricted to known directories.
# Rules:
# 1. Known Directories are the unique subsets from the combination of:
# --datadir, --innobd-directories, --innodb-data-home-dir, --innodb-undo-directory
# 2. If --innodb-undo-directory is unique, new IBD files are not allowed there.
# 3. Any location referenced in DATA DIRECTORY must be a Known Directory other than a unique undo dir.
# 4. CREATE TABLESPACE ... ADD DATAFILE must be a Known Directory other than a unique undo dir.
# 5. CREATE UNDO TABLESPACE ... ADD DATAFILE must be any Known Directory.
# 6. At startup, since previous engines did not restrict locations to known directories,
# anything found will be used as before. But a warning message will be put into the error log.
#
SET default_storage_engine=InnoDB;
#
# Create a table in a known directory.
#
CREATE TABLE t1(c1 INT) DATA DIRECTORY='MYSQL_TMP_DIR/known_dir';
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci DATA DIRECTORY='MYSQL_TMP_DIR/known_dir/'
#
# Attempt to create a table in an unknown directory.
#
CREATE TABLE bad_1 (c1 INT) DATA DIRECTORY='MYSQL_TMP_DIR/unknown_dir';
ERROR HY000: The DATA DIRECTORY location must be in a known directory.
SHOW WARNINGS;
Level Code Message
Error 3121 The DATA DIRECTORY location must be in a known directory.
Error 1031 Table storage engine for 'bad_1' doesn't have this option
#
# Attempt to create a table in the datadir.
#
CREATE DATABASE data;
USE data;
CREATE TABLE bad_2 (c1 INT) DATA DIRECTORY='MYSQLTEST_VARDIR/mysqld.1';
ERROR HY000: The DATA DIRECTORY location cannot be the datadir.
SHOW WARNINGS;
Level Code Message
Error 3121 The DATA DIRECTORY location cannot be the datadir.
Error 1031 Table storage engine for 'bad_2' doesn't have this option
USE test;
DROP DATABASE data;
#
# Create a table in a non-unique undo directory.
#
CREATE TABLE t2 (c1 INT) DATA DIRECTORY='MYSQL_TMP_DIR/undo_dir';
SHOW CREATE TABLE t2;
Table Create Table
t2 CREATE TABLE `t2` (
`c1` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci DATA DIRECTORY='MYSQL_TMP_DIR/undo_dir/'
#
# Create a general tablespace in a known directories.
#
CREATE TABLESPACE ts1 ADD DATAFILE 'MYSQL_TMP_DIR/known_dir/ts1.ibd';
#
# Attempt to create a general tablespace in an unknown directory.
#
CREATE TABLESPACE bad_4 ADD DATAFILE 'MYSQL_TMP_DIR/unknown_dir/bad_4.ibd';
ERROR HY000: The DATAFILE location must be in a known directory.
SHOW WARNINGS;
Level Code Message
Error 3121 The DATAFILE location must be in a known directory.
Error 1528 Failed to create TABLESPACE bad_4
Error 3121 Incorrect File Name 'MYSQL_TMP_DIR/unknown_dir/bad_4.ibd'.
#
# Create a general tablespace in a non-unique undo directory.
#
CREATE TABLESPACE ts2 ADD DATAFILE 'MYSQL_TMP_DIR/undo_dir/ts2.ibd';
#
# Attempt to create a general tablespace in a subdirectory of the datadir.
#
CREATE TABLESPACE bad_6 ADD DATAFILE 'general/bad_6.ibd';
ERROR HY000: The DATAFILE location cannot be under the datadir.
SHOW WARNINGS;
Level Code Message
Error 3121 The DATAFILE location cannot be under the datadir.
Error 1528 Failed to create TABLESPACE bad_6
Error 3121 Incorrect File Name 'general/bad_6.ibd'.
#
# Create an undo tablespace in the unique undo directory.
#
CREATE UNDO TABLESPACE undo_003 ADD DATAFILE 'MYSQL_TMP_DIR/undo_dir/undo_003.ibu';
#
# Create an undo tablespace in a known dir other than the unique undo directory.
#
CREATE UNDO TABLESPACE undo_004 ADD DATAFILE 'MYSQL_TMP_DIR/known_dir/undo_004.ibu';
SELECT NAME, SPACE_TYPE, STATE FROM INFORMATION_SCHEMA.INNODB_TABLESPACES
WHERE SPACE_TYPE = 'Undo' ORDER BY NAME;
NAME SPACE_TYPE STATE
innodb_undo_001 Undo active
innodb_undo_002 Undo active
undo_003 Undo active
undo_004 Undo active
#
# Attempt to create an undo tablespace in an unknown directory.
#
CREATE UNDO TABLESPACE bad_7 ADD DATAFILE 'MYSQL_TMP_DIR/unknown_dir/bad_7.ibu';
ERROR HY000: The UNDO DATAFILE location must be in a known directory.
SHOW WARNINGS;
Level Code Message
Error 3121 The UNDO DATAFILE location must be in a known directory.
Error 1528 Failed to create UNDO TABLESPACE bad_7
Error 3121 Incorrect File Name 'MYSQL_TMP_DIR/unknown_dir/bad_7.ibu'.
#
# Create a table with a partitions in known directories.
#
CREATE TABLE tp1(c1 INT)
PARTITION BY HASH(c1) (
PARTITION p1 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir',
PARTITION p2 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir',
PARTITION p3 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir');
SHOW CREATE TABLE tp1;
Table Create Table
tp1 CREATE TABLE `tp1` (
`c1` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
/*!50100 PARTITION BY HASH (`c1`)
(PARTITION p1 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB,
PARTITION p2 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB,
PARTITION p3 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB) */
#
# Attempt to create a table with a partition in an unknown directory.
#
CREATE TABLE bad_8(c1 INT)
PARTITION BY HASH(c1) (
PARTITION p1 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir',
PARTITION p2 DATA DIRECTORY='MYSQL_TMP_DIR/unknown_dir',
PARTITION p3 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir');
ERROR HY000: The DATA DIRECTORY location must be in a known directory.
SHOW WARNINGS;
Level Code Message
Error 3121 The DATA DIRECTORY location must be in a known directory.
Error 1031 Table storage engine for 'bad_8' doesn't have this option
#
# Attempt to create a table with a partition in the undo directory.
#
CREATE TABLE tp2(c1 INT)
PARTITION BY HASH(c1) (
PARTITION p1 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir',
PARTITION p2 DATA DIRECTORY='MYSQL_TMP_DIR/undo_dir',
PARTITION p3 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir');
SHOW CREATE TABLE tp2;
Table Create Table
tp2 CREATE TABLE `tp2` (
`c1` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
/*!50100 PARTITION BY HASH (`c1`)
(PARTITION p1 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB,
PARTITION p2 DATA DIRECTORY = 'MYSQL_TMP_DIR/undo_dir/' ENGINE = InnoDB,
PARTITION p3 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB) */
#
# Create a table with a sub-partitions in known directories.
#
CREATE TABLE tp3(c1 INT, c2 INT)
PARTITION BY RANGE(c1) SUBPARTITION BY HASH(c2) (
PARTITION p1 VALUES LESS THAN (10) (
SUBPARTITION s1 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir',
SUBPARTITION s2 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir'),
PARTITION p2 VALUES LESS THAN (20) (
SUBPARTITION s3 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir',
SUBPARTITION s4 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir'));
SHOW CREATE TABLE tp3;
Table Create Table
tp3 CREATE TABLE `tp3` (
`c1` int DEFAULT NULL,
`c2` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
/*!50100 PARTITION BY RANGE (`c1`)
SUBPARTITION BY HASH (`c2`)
(PARTITION p1 VALUES LESS THAN (10)
(SUBPARTITION s1 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB,
SUBPARTITION s2 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB),
PARTITION p2 VALUES LESS THAN (20)
(SUBPARTITION s3 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB,
SUBPARTITION s4 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB)) */
#
# Attempt to create a table with a sub-partition in an unknown directory.
#
CREATE TABLE bad_10(c1 INT, c2 INT)
PARTITION BY RANGE(c1) SUBPARTITION BY HASH(c2) (
PARTITION p1 VALUES LESS THAN (10) (
SUBPARTITION s1 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir',
SUBPARTITION s2 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir'),
PARTITION p2 VALUES LESS THAN (20) (
SUBPARTITION s3 DATA DIRECTORY='MYSQL_TMP_DIR/unknown_dir',
SUBPARTITION s4 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir'));
ERROR HY000: The DATA DIRECTORY location must be in a known directory.
SHOW WARNINGS;
Level Code Message
Error 3121 The DATA DIRECTORY location must be in a known directory.
Error 1031 Table storage engine for 'bad_10' doesn't have this option
#
# Attempt to create a table with a sub-partition in the undo directory
#
CREATE TABLE tp4(c1 INT, c2 INT)
PARTITION BY RANGE(c1) SUBPARTITION BY HASH(c2) (
PARTITION p1 VALUES LESS THAN (10) (
SUBPARTITION s1 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir',
SUBPARTITION s2 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir'),
PARTITION p2 VALUES LESS THAN (20) (
SUBPARTITION s3 DATA DIRECTORY='MYSQL_TMP_DIR/undo_dir',
SUBPARTITION s4 DATA DIRECTORY='MYSQL_TMP_DIR/known_dir'));
SHOW CREATE TABLE tp4;
Table Create Table
tp4 CREATE TABLE `tp4` (
`c1` int DEFAULT NULL,
`c2` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
/*!50100 PARTITION BY RANGE (`c1`)
SUBPARTITION BY HASH (`c2`)
(PARTITION p1 VALUES LESS THAN (10)
(SUBPARTITION s1 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB,
SUBPARTITION s2 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB),
PARTITION p2 VALUES LESS THAN (20)
(SUBPARTITION s3 DATA DIRECTORY = 'MYSQL_TMP_DIR/undo_dir/' ENGINE = InnoDB,
SUBPARTITION s4 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB)) */
#
# Attempt to add a partition using an unknown directory.
#
ALTER TABLE tp3 ADD PARTITION (
PARTITION p3 VALUES LESS THAN (30) (
SUBPARTITION s5 DATA DIRECTORY 'MYSQL_TMP_DIR/known_dir',
SUBPARTITION s6 DATA DIRECTORY 'MYSQL_TMP_DIR/unknown_dir'));
ERROR HY000: The DATA DIRECTORY location must be in a known directory.
SHOW WARNINGS;
Level Code Message
Error 3121 The DATA DIRECTORY location must be in a known directory.
Error 1031 Table storage engine for 'tp3' doesn't have this option
#
# Successfully add a partition using a known directory.
#
ALTER TABLE tp3 ADD PARTITION (
PARTITION p3 VALUES LESS THAN (30) (
SUBPARTITION s5 DATA DIRECTORY 'MYSQL_TMP_DIR/known_dir',
SUBPARTITION s6 DATA DIRECTORY 'MYSQL_TMP_DIR/known_dir'));
SHOW CREATE TABLE tp3;
Table Create Table
tp3 CREATE TABLE `tp3` (
`c1` int DEFAULT NULL,
`c2` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
/*!50100 PARTITION BY RANGE (`c1`)
SUBPARTITION BY HASH (`c2`)
(PARTITION p1 VALUES LESS THAN (10)
(SUBPARTITION s1 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir' ENGINE = InnoDB,
SUBPARTITION s2 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir' ENGINE = InnoDB),
PARTITION p2 VALUES LESS THAN (20)
(SUBPARTITION s3 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir' ENGINE = InnoDB,
SUBPARTITION s4 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir' ENGINE = InnoDB),
PARTITION p3 VALUES LESS THAN (30)
(SUBPARTITION s5 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir' ENGINE = InnoDB,
SUBPARTITION s6 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir' ENGINE = InnoDB)) */
#
# Attempt to reorganize a partition using an unknown directory.
#
ALTER TABLE tp3 REORGANIZE PARTITION p3 INTO (
PARTITION p3 VALUES LESS THAN(40) (
SUBPARTITION s5 DATA DIRECTORY 'MYSQL_TMP_DIR/unknown_dir',
SUBPARTITION s6 DATA DIRECTORY 'MYSQL_TMP_DIR/known_dir'));
ERROR HY000: The DATA DIRECTORY location must be in a known directory.
SHOW WARNINGS;
Level Code Message
Error 3121 The DATA DIRECTORY location must be in a known directory.
Error 1031 Table storage engine for 'tp3' doesn't have this option
#
# Show CREATE TABLE for all six tables.
#
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci DATA DIRECTORY='MYSQL_TMP_DIR/known_dir/'
SHOW CREATE TABLE t2;
Table Create Table
t2 CREATE TABLE `t2` (
`c1` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci DATA DIRECTORY='MYSQL_TMP_DIR/undo_dir/'
SHOW CREATE TABLE tp1;
Table Create Table
tp1 CREATE TABLE `tp1` (
`c1` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
/*!50100 PARTITION BY HASH (`c1`)
(PARTITION p1 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB,
PARTITION p2 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB,
PARTITION p3 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB) */
SHOW CREATE TABLE tp2;
Table Create Table
tp2 CREATE TABLE `tp2` (
`c1` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
/*!50100 PARTITION BY HASH (`c1`)
(PARTITION p1 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB,
PARTITION p2 DATA DIRECTORY = 'MYSQL_TMP_DIR/undo_dir/' ENGINE = InnoDB,
PARTITION p3 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB) */
SHOW CREATE TABLE tp3;
Table Create Table
tp3 CREATE TABLE `tp3` (
`c1` int DEFAULT NULL,
`c2` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
/*!50100 PARTITION BY RANGE (`c1`)
SUBPARTITION BY HASH (`c2`)
(PARTITION p1 VALUES LESS THAN (10)
(SUBPARTITION s1 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir' ENGINE = InnoDB,
SUBPARTITION s2 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir' ENGINE = InnoDB),
PARTITION p2 VALUES LESS THAN (20)
(SUBPARTITION s3 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir' ENGINE = InnoDB,
SUBPARTITION s4 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir' ENGINE = InnoDB),
PARTITION p3 VALUES LESS THAN (30)
(SUBPARTITION s5 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir' ENGINE = InnoDB,
SUBPARTITION s6 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir' ENGINE = InnoDB)) */
SHOW CREATE TABLE tp4;
Table Create Table
tp4 CREATE TABLE `tp4` (
`c1` int DEFAULT NULL,
`c2` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
/*!50100 PARTITION BY RANGE (`c1`)
SUBPARTITION BY HASH (`c2`)
(PARTITION p1 VALUES LESS THAN (10)
(SUBPARTITION s1 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB,
SUBPARTITION s2 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB),
PARTITION p2 VALUES LESS THAN (20)
(SUBPARTITION s3 DATA DIRECTORY = 'MYSQL_TMP_DIR/undo_dir/' ENGINE = InnoDB,
SUBPARTITION s4 DATA DIRECTORY = 'MYSQL_TMP_DIR/known_dir/' ENGINE = InnoDB)) */
#
# Show these tables in information_schema.
#
=== information_schema.innodb_tables and innodb_tablespaces ===
Table Name Tablespace Table Flags Columns Row Format Zip Size Space Type
mtr/asserted_test_suppressions mtr/asserted_test_suppressions 33 4 Dynamic 0 Single
mtr/global_suppressions mtr/global_suppressions 33 4 Dynamic 0 Single
mtr/test_ignored_global_suppressions mtr/test_ignored_global_suppressions 33 4 Dynamic 0 Single
mtr/test_suppressions mtr/test_suppressions 33 4 Dynamic 0 Single
test/t1 test/t1 97 4 Dynamic 0 Single
test/t2 test/t2 97 4 Dynamic 0 Single
test/tp1#p#p1 test/tp1#p#p1 97 4 Dynamic 0 Single
test/tp1#p#p2 test/tp1#p#p2 97 4 Dynamic 0 Single
test/tp1#p#p3 test/tp1#p#p3 97 4 Dynamic 0 Single
test/tp2#p#p1 test/tp2#p#p1 97 4 Dynamic 0 Single
test/tp2#p#p2 test/tp2#p#p2 97 4 Dynamic 0 Single
test/tp2#p#p3 test/tp2#p#p3 97 4 Dynamic 0 Single
test/tp3#p#p1#sp#s1 test/tp3#p#p1#sp#s1 97 5 Dynamic 0 Single
test/tp3#p#p1#sp#s2 test/tp3#p#p1#sp#s2 97 5 Dynamic 0 Single
test/tp3#p#p2#sp#s3 test/tp3#p#p2#sp#s3 97 5 Dynamic 0 Single
test/tp3#p#p2#sp#s4 test/tp3#p#p2#sp#s4 97 5 Dynamic 0 Single
test/tp3#p#p3#sp#s5 test/tp3#p#p3#sp#s5 97 5 Dynamic 0 Single
test/tp3#p#p3#sp#s6 test/tp3#p#p3#sp#s6 97 5 Dynamic 0 Single
test/tp4#p#p1#sp#s1 test/tp4#p#p1#sp#s1 97 5 Dynamic 0 Single
test/tp4#p#p1#sp#s2 test/tp4#p#p1#sp#s2 97 5 Dynamic 0 Single
test/tp4#p#p2#sp#s3 test/tp4#p#p2#sp#s3 97 5 Dynamic 0 Single
test/tp4#p#p2#sp#s4 test/tp4#p#p2#sp#s4 97 5 Dynamic 0 Single
=== information_schema.innodb_tablespaces and innodb_datafiles ===
Space_Name Space_Type Page_Size Zip_Size BlockSize!=0 FileSize!=0 Formats_Permitted Path
mtr/asserted_test_suppressions Single DEFAULT 0 1 1 Dynamic MYSQLD_DATADIR/mtr/asserted_test_suppressions.ibd
mtr/global_suppressions Single DEFAULT 0 1 1 Dynamic MYSQLD_DATADIR/mtr/global_suppressions.ibd
mtr/test_ignored_global_suppressions Single DEFAULT 0 1 1 Dynamic MYSQLD_DATADIR/mtr/test_ignored_global_suppressions.ibd
mtr/test_suppressions Single DEFAULT 0 1 1 Dynamic MYSQLD_DATADIR/mtr/test_suppressions.ibd
test/t1 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/known_dir/test/t1.ibd
test/t2 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/undo_dir/test/t2.ibd
test/tp1#p#p1 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/known_dir/test/tp1#p#p1.ibd
test/tp1#p#p2 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/known_dir/test/tp1#p#p2.ibd
test/tp1#p#p3 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/known_dir/test/tp1#p#p3.ibd
test/tp2#p#p1 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/known_dir/test/tp2#p#p1.ibd
test/tp2#p#p2 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/undo_dir/test/tp2#p#p2.ibd
test/tp2#p#p3 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/known_dir/test/tp2#p#p3.ibd
test/tp3#p#p1#sp#s1 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/known_dir/test/tp3#p#p1#sp#s1.ibd
test/tp3#p#p1#sp#s2 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/known_dir/test/tp3#p#p1#sp#s2.ibd
test/tp3#p#p2#sp#s3 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/known_dir/test/tp3#p#p2#sp#s3.ibd
test/tp3#p#p2#sp#s4 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/known_dir/test/tp3#p#p2#sp#s4.ibd
test/tp3#p#p3#sp#s5 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/known_dir/test/tp3#p#p3#sp#s5.ibd
test/tp3#p#p3#sp#s6 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/known_dir/test/tp3#p#p3#sp#s6.ibd
test/tp4#p#p1#sp#s1 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/known_dir/test/tp4#p#p1#sp#s1.ibd
test/tp4#p#p1#sp#s2 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/known_dir/test/tp4#p#p1#sp#s2.ibd
test/tp4#p#p2#sp#s3 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/undo_dir/test/tp4#p#p2#sp#s3.ibd
test/tp4#p#p2#sp#s4 Single DEFAULT 0 1 1 Dynamic MYSQL_TMP_DIR/known_dir/test/tp4#p#p2#sp#s4.ibd
ts1 General DEFAULT 0 1 1 Any MYSQL_TMP_DIR/known_dir/ts1.ibd
ts2 General DEFAULT 0 1 1 Any MYSQL_TMP_DIR/undo_dir/ts2.ibd
=== information_schema.files ===
Space_Name File_Type Engine Status Tablespace_Name Path
mtr/asserted_test_suppressions TABLESPACE InnoDB NORMAL mtr/asserted_test_suppressions MYSQLD_DATADIR/mtr/asserted_test_suppressions.ibd
mtr/global_suppressions TABLESPACE InnoDB NORMAL mtr/global_suppressions MYSQLD_DATADIR/mtr/global_suppressions.ibd
mtr/test_ignored_global_suppressions TABLESPACE InnoDB NORMAL mtr/test_ignored_global_suppressions MYSQLD_DATADIR/mtr/test_ignored_global_suppressions.ibd
mtr/test_suppressions TABLESPACE InnoDB NORMAL mtr/test_suppressions MYSQLD_DATADIR/mtr/test_suppressions.ibd
test/t1 TABLESPACE InnoDB NORMAL test/t1 MYSQL_TMP_DIR/known_dir/test/t1.ibd
test/t2 TABLESPACE InnoDB NORMAL test/t2 MYSQL_TMP_DIR/undo_dir/test/t2.ibd
test/tp1#p#p1 TABLESPACE InnoDB NORMAL test/tp1#p#p1 MYSQL_TMP_DIR/known_dir/test/tp1#p#p1.ibd
test/tp1#p#p2 TABLESPACE InnoDB NORMAL test/tp1#p#p2 MYSQL_TMP_DIR/known_dir/test/tp1#p#p2.ibd
test/tp1#p#p3 TABLESPACE InnoDB NORMAL test/tp1#p#p3 MYSQL_TMP_DIR/known_dir/test/tp1#p#p3.ibd
test/tp2#p#p1 TABLESPACE InnoDB NORMAL test/tp2#p#p1 MYSQL_TMP_DIR/known_dir/test/tp2#p#p1.ibd
test/tp2#p#p2 TABLESPACE InnoDB NORMAL test/tp2#p#p2 MYSQL_TMP_DIR/undo_dir/test/tp2#p#p2.ibd
test/tp2#p#p3 TABLESPACE InnoDB NORMAL test/tp2#p#p3 MYSQL_TMP_DIR/known_dir/test/tp2#p#p3.ibd
test/tp3#p#p1#sp#s1 TABLESPACE InnoDB NORMAL test/tp3#p#p1#sp#s1 MYSQL_TMP_DIR/known_dir/test/tp3#p#p1#sp#s1.ibd
test/tp3#p#p1#sp#s2 TABLESPACE InnoDB NORMAL test/tp3#p#p1#sp#s2 MYSQL_TMP_DIR/known_dir/test/tp3#p#p1#sp#s2.ibd
test/tp3#p#p2#sp#s3 TABLESPACE InnoDB NORMAL test/tp3#p#p2#sp#s3 MYSQL_TMP_DIR/known_dir/test/tp3#p#p2#sp#s3.ibd
test/tp3#p#p2#sp#s4 TABLESPACE InnoDB NORMAL test/tp3#p#p2#sp#s4 MYSQL_TMP_DIR/known_dir/test/tp3#p#p2#sp#s4.ibd
test/tp3#p#p3#sp#s5 TABLESPACE InnoDB NORMAL test/tp3#p#p3#sp#s5 MYSQL_TMP_DIR/known_dir/test/tp3#p#p3#sp#s5.ibd
test/tp3#p#p3#sp#s6 TABLESPACE InnoDB NORMAL test/tp3#p#p3#sp#s6 MYSQL_TMP_DIR/known_dir/test/tp3#p#p3#sp#s6.ibd
test/tp4#p#p1#sp#s1 TABLESPACE InnoDB NORMAL test/tp4#p#p1#sp#s1 MYSQL_TMP_DIR/known_dir/test/tp4#p#p1#sp#s1.ibd
test/tp4#p#p1#sp#s2 TABLESPACE InnoDB NORMAL test/tp4#p#p1#sp#s2 MYSQL_TMP_DIR/known_dir/test/tp4#p#p1#sp#s2.ibd
test/tp4#p#p2#sp#s3 TABLESPACE InnoDB NORMAL test/tp4#p#p2#sp#s3 MYSQL_TMP_DIR/undo_dir/test/tp4#p#p2#sp#s3.ibd
test/tp4#p#p2#sp#s4 TABLESPACE InnoDB NORMAL test/tp4#p#p2#sp#s4 MYSQL_TMP_DIR/known_dir/test/tp4#p#p2#sp#s4.ibd
ts1 TABLESPACE InnoDB NORMAL ts1 MYSQL_TMP_DIR/known_dir/ts1.ibd
ts2 TABLESPACE InnoDB NORMAL ts2 MYSQL_TMP_DIR/undo_dir/ts2.ibd
#
# Validate the messages that should have been put into the error log.
#
Pattern "Cannot create a tablespace for table test/bad_1 because the directory is not a valid location. The DATA DIRECTORY location must be in a known directory" found
Pattern "Cannot create a tablespace for table data/bad_2 because the directory is not a valid location. The DATA DIRECTORY location cannot be the datadir" found
Pattern "Cannot create tablespace bad_4 because the directory is not a valid location. The DATAFILE location must be in a known directory" found
Pattern "Cannot create tablespace bad_6 because the directory is not a valid location. The DATAFILE location cannot be under the datadir" found
Pattern "Cannot create tablespace bad_7 because the directory is not a valid location. The UNDO DATAFILE location must be in a known directory" found
Pattern "Cannot create a tablespace for table test/bad_8.*p2 because the directory is not a valid location. The DATA DIRECTORY location must be in a known directory" found
Pattern "Cannot create a tablespace for table test/bad_10.*p2.*s3 because the directory is not a valid location. The DATA DIRECTORY location must be in a known directory" found
Pattern "Cannot create a tablespace for table test/tp3.*p3.*s6 because the directory is not a valid location. The DATA DIRECTORY location must be in a known directory" found
Pattern "Cannot create a tablespace for table test/tp3.*p3.*s5#tmp because the directory is not a valid location. The DATA DIRECTORY location must be in a known directory" found
#
# Cleanup
#
DROP TABLE t1;
DROP TABLE t2;
DROP TABLE tp1;
DROP TABLE tp2;
DROP TABLE tp3;
DROP TABLE tp4;
DROP TABLESPACE ts1;
DROP TABLESPACE ts2;
ALTER UNDO TABLESPACE undo_003 SET INACTIVE;
ALTER UNDO TABLESPACE undo_004 SET INACTIVE;
DROP UNDO TABLESPACE undo_003;
DROP UNDO TABLESPACE undo_004;
|