1
0
mirror of https://github.com/MariaDB/server.git synced 2025-04-26 11:49:09 +03:00
mariadb/mysql-test/suite/innodb/t/create_isl_with_direct.test
Marko Mäkelä 499ef7bf23 Add a global suppression for O_DIRECT failures
Fixes up commit b8ad6fbd95830b61d282abc1167300fff261be7e
2022-11-29 11:06:29 +02:00

21 lines
594 B
Plaintext

--source include/not_embedded.inc
--source include/have_innodb.inc
--source include/have_symlink.inc
SHOW VARIABLES LIKE 'innodb_flush_method';
let MYSQLD_DATADIR=`SELECT @@datadir`;
--replace_result $MYSQL_TMP_DIR MYSQL_TMP_DIR
# Create a table with explicit data directory option.
EVAL CREATE TABLE t1 (x INT) ENGINE=INNODB, DATA DIRECTORY='$MYSQL_TMP_DIR';
--echo # Contents of tmp/test directory containing .ibd file
--list_files $MYSQL_TMP_DIR/test
--echo # Contents of the 'test' database directory containing .isl and .frm files
--list_files $MYSQLD_DATADIR/test
DROP TABLE t1;