summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/t/create_isl_with_direct.test
blob: 45d7fbf4ea5a0fac61fd7461d813f08a69767aad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--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;